INNER CODE UNIT · Python
is_enabled
lululxvi/deepxde · deepxde/backend/__init__.py:15
def is_enabled(api):
"""Return true if the api is enabled by the current backend.
Args:
api (string): The api name.
Returns:
bool: ``True`` if the API is enabled by the current backend.
"""
return api in _enabled_apis
def _gen_missing_api(api, mod_name):
def _missing_api(*args, **kwargs):
raise ImportError(
'API "%s" is not supported by backend "%s".'
" You can switch to other backends by setting"
" the DDE_BACKEND environment." % (api, mod_name)