Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Torch tensor space #1229

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions odl/space/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
from .npy_tensors import *
__all__ += npy_tensors.__all__

from .torch_tensors import *
__all__ += torch_tensors.__all__

from .pspace import *
__all__ += pspace.__all__

Expand Down
3 changes: 3 additions & 0 deletions odl/space/entry_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,15 @@
from __future__ import print_function, division, absolute_import

from odl.space.npy_tensors import NumpyTensorSpace
from odl.space.torch_tensors import TorchTensorSpace, TORCH_AVAILABLE

# We don't expose anything to odl.space
__all__ = ()

IS_INITIALIZED = False
TENSOR_SPACE_IMPLS = {'numpy': NumpyTensorSpace}
if TORCH_AVAILABLE:
TENSOR_SPACE_IMPLS['torch'] = TorchTensorSpace


def _initialize_if_needed():
Expand Down
Loading