Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d028dd5
ENH: add cupy tensor space
Oct 6, 2017
dd2b7c4
MAINT: improve import of cupy
Nov 23, 2017
e1ce7fb
WIP: fix cupy->numpy transfers
Nov 23, 2017
f282947
WIP: fix custom cupy kernels
Nov 23, 2017
b84ee8d
MAINT: minor fixes
Nov 23, 2017
4a0c67c
WIP: implement cupy space unit tests
Nov 23, 2017
1d431c6
WIP: fix cublas stuff
Nov 24, 2017
2fdebff
WIP: fix cublas, weight propagation, implement (add,multiply).(reduce…
Nov 25, 2017
3bdc3f0
TST: ignore cupy_tensors in doctests if cupy is not available
Nov 25, 2017
6fbcc81
MAINT: fix various numpy and cupy tensor things
Nov 25, 2017
f6a8022
ENH: allow indexing of CupyTensor with CupyTensor
Nov 25, 2017
ee386ab
MAINT: minor stuff
Nov 25, 2017
2b7103c
MAINT: change weighted inf-norm to ignore weight
Nov 25, 2017
2ed9ae1
ENH: make comparison of cupy arrays in tests faster
Nov 25, 2017
8414458
WIP: fix tensor tests for cupy
Nov 25, 2017
7d5bf9d
MAINT: adapt all_almost_equal to cupy
Nov 26, 2017
9cf8917
WIP: fix cupy tensor tests
Nov 26, 2017
e47f78a
WIP: fix cupy tests
Nov 27, 2017
0fc7de3
ENH: make ufuncs and ufunc_ops work with 2 outputs
Nov 27, 2017
9f24b7b
MAINT: make weighting methods numpy-independent
Nov 27, 2017
1422fc0
WIP: fix cupy tests
Nov 27, 2017
cbd7b87
WIP: fix cupy stuff
Nov 28, 2017
cbdfe04
WIP: fix cupy tensor tests
Nov 28, 2017
2703c3e
WIP: fix pspace noise_array and out aliasing issue
Nov 29, 2017
fbfba6c
ENH: implement Numpy-style broadcasting in pspace ufuncs
Nov 29, 2017
71ccc46
WIP: simplify tests and add utils for array modules
Nov 29, 2017
392762d
ENH: add impl to writable_array
Nov 29, 2017
cd12e84
ENH: add impl to asarray, tests, and fix real and imag for cupy
Nov 29, 2017
6a9f733
WIP: add asarray helper, fix diff_ops for cupy
Nov 30, 2017
dfeee85
MAINT: fix utils
Nov 30, 2017
66728f2
MAINT: exclude unsupported ufunc operators
Nov 30, 2017
23149ee
MAINT: fix bad parens in test
Nov 30, 2017
6efe98c
BUG: fix indexing with cupy tensor
Nov 30, 2017
daac62e
MAINT: minor fix in diff_ops
Nov 30, 2017
58b921d
TST: mark cupy-only test as skip if cupy is not available
Dec 1, 2017
eb10834
MAINT: fix Py2-incompatible doctest in utility
Dec 1, 2017
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 .cupy_tensors import *
__all__ += cupy_tensors.__all__

from .pspace import *
__all__ += pspace.__all__

Expand Down
Loading