diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2018-10-23 12:20:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 12:20:18 +0200 |
commit | eb97daad97596d54e0da8987ef1c5b1dd91c124f (patch) | |
tree | e0f98656f13716b42898c6aefd8abbcc7353d4bc /python/astra/astra.py | |
parent | 6730face204f40c57c3e8fe58ea9749494d669a6 (diff) | |
parent | 03ff113ac48f21956247b164a83000b5f6ab311d (diff) | |
download | astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.gz astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.bz2 astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.tar.xz astra-eb97daad97596d54e0da8987ef1c5b1dd91c124f.zip |
Merge pull request #170 from wjp/feature_flags
Add support for checking features at run-time
Diffstat (limited to 'python/astra/astra.py')
-rw-r--r-- | python/astra/astra.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/python/astra/astra.py b/python/astra/astra.py index ef46db1..e74d29a 100644 --- a/python/astra/astra.py +++ b/python/astra/astra.py @@ -54,6 +54,20 @@ def get_gpu_info(idx=-1): """ return a.get_gpu_info(idx) +def has_feature(feature): + """Check a feature flag. + + These are used to check if certain functionality has been + enabled at compile time, if new functionality is present, or if + a backward-incompatible change is present. + + See include/astra/Features.h for a list. + + :param feature: The name of the feature + :type feature: :class:`str` + :returns: :class:`bool` -- The presence of the feature + """ + return a.has_feature(feature) def delete(ids): """Delete an astra object. |