Skip to content

Commit

Permalink
Update DSI Studio, FSL
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcieslak committed Apr 3, 2024
1 parent 89ba85b commit 0d769d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

.dockersetup: &dockersetup
docker:
- image: pennbbl/qsiprep_build:24.1.4
- image: pennbbl/qsiprep_build:24.4.4
working_directory: /src/qsiprep

runinstall: &runinstall
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && \
COPY . /src/qsiprep
RUN python -m build /src/qsiprep

FROM pennbbl/qsiprep_build:24.1.4
FROM pennbbl/qsiprep_build:24.4.4

# Install qsiprep wheel
COPY --from=wheelstage /src/qsiprep/dist/*.whl .
Expand Down
2 changes: 1 addition & 1 deletion qsiprep/interfaces/eddy.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def _num_threads_update(self):
self.inputs.environ["OMP_NUM_THREADS"] = str(self.inputs.num_threads)

def _use_cuda(self):
self._cmd = "eddy_cuda" if self.inputs.use_cuda else "eddy_openmp"
self._cmd = "eddy_cuda10.2" if self.inputs.use_cuda else "eddy_cpu"

def _list_outputs(self):
outputs = self.output_spec().get()
Expand Down

0 comments on commit 0d769d6

Please sign in to comment.