diff --git a/pyop2/backend.py b/pyop2/backend.py index 034a34c2f..67b9daaef 100644 --- a/pyop2/backend.py +++ b/pyop2/backend.py @@ -3,6 +3,10 @@ class _not_implemented: # noqa class AbstractComputeBackend: + """ + Abstract class to record all the backend specific implementation of + :mod:`pyop2`'s data structures. + """ ParLoop = _not_implemented() Set = _not_implemented() ExtrudedSet = _not_implemented()