Skip to content

Commit

Permalink
BFs
Browse files Browse the repository at this point in the history
  • Loading branch information
36000 committed Jan 22, 2024
1 parent b612310 commit 5e5da19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AFQ/tractography/gputractography.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def gpu_track(data, gtab, seed_img, stop_img, odf_model,
gtargs[var_name] = np.ascontiguousarray(
var, dtype=dtype)
else:
gtargs[var_name] = var
gtargs[var_name] = np.asarray(var, dtype=dtype)

gpu_tracker = cuslines.GPUTracker(
model_type,
Expand Down
2 changes: 1 addition & 1 deletion gpu_docker/cuda_track_template.def
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ From: nvidia/cuda:12.0.1-devel-ubuntu20.04
ca-certificates gnupg software-properties-common gcc git wget numactl

# Clone GPUStreamlines
git clone --recursive -b csaodf_debug_2 https://github.com/dipy/GPUStreamlines /opt/GPUStreamlines
git clone --recursive -b csaodf https://github.com/dipy/GPUStreamlines /opt/GPUStreamlines

# Kitware repository for CMake
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null \
Expand Down

0 comments on commit 5e5da19

Please sign in to comment.