Skip to content

Commit

Permalink
Merge branch 'master' into oscar_scale
Browse files Browse the repository at this point in the history
  • Loading branch information
chaithyagr committed Mar 12, 2021
2 parents f790170 + 384e007 commit ada55a8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 160 deletions.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
docker:
- image: circleci/python:3.6
working_directory: ~/repo
parallelism: 4
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -43,7 +44,9 @@ jobs:
pip install --upgrade pip
pip install Cython
pip install -e .
python .circleci/test_script.py
TESTFILES=$(circleci tests glob examples/*.py | circleci tests split --split-by=timings)
echo ${TESTFILES}
python3 -m unittest ${TESTFILES}
- store_artifacts:
path: test-reports
destination: test-reports
22 changes: 0 additions & 22 deletions .circleci/test_script.py

This file was deleted.

1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ language: python
cache: pip
matrix:
include:
- python: 3.5
- python: 3.6
- python: 3.7
- python: 3.8
Expand Down
122 changes: 0 additions & 122 deletions examples/non_cartesian_reconstruction_stack_3d.py

This file was deleted.

14 changes: 0 additions & 14 deletions mri/operators/fourier/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,6 @@
from .utils import convert_locations_to_mask, convert_mask_to_locations
from modopt.interface.errors import warn

# Third party import
try:
import pynfft
except Exception:
warnings.warn("pynfft python package has not been found. If needed use "
"the master release.")
pass
try:
from pynufft import NUFFT_hsa, NUFFT_cpu
except Exception:
warnings.warn("pynufft python package has not been found. If needed use "
"the master release. Till then you cannot use NUFFT on GPU")
pass


class FFT(OperatorBase):
""" Standard unitary ND Fast Fourrier Transform class.
Expand Down

0 comments on commit ada55a8

Please sign in to comment.