Skip to content

Commit

Permalink
dMRI to dwi
Browse files Browse the repository at this point in the history
  • Loading branch information
aghaeifar committed Dec 20, 2024
1 parent 7711e5f commit fb8bff7
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ endif()
# Add Boost and CUDA include directories
include_directories(${Boost_INCLUDE_DIRS} ${HDF5_INCLUDE_DIRS} ./include ./src ./src/shapes)
# Add subfolders
add_subdirectory(./src/dMRI)
add_subdirectory(./src/dwi)
add_subdirectory(./src/phantom)
add_subdirectory(./src/config)
add_subdirectory(./src/sim)

# Add the executable
set(SOURCES ./src/spinwalk.cu ${SUBCOMMAND_PHANTOM} ${SUBCOMMAND_SIM} ${SUBCOMMAND_GRADIENT} ${SUBCOMMAND_CONFIG})
set(SOURCES ./src/spinwalk.cu ${SUBCOMMAND_PHANTOM} ${SUBCOMMAND_SIM} ${SUBCOMMAND_DWI} ${SUBCOMMAND_CONFIG})

if(CMAKE_CUDA_COMPILER)
add_executable(${project} ${SOURCES})
Expand Down
2 changes: 1 addition & 1 deletion src/dMRI/CMakeLists.txt → src/dwi/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(SUBCOMMAND_GRADIENT
set(SUBCOMMAND_DWI
${CMAKE_CURRENT_SOURCE_DIR}/handler.cpp
${CMAKE_CURRENT_SOURCE_DIR}/pgse.cpp
PARENT_SCOPE)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/spinwalk.cu
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "definitions.h"
#include "sim/monte_carlo.cuh"
#include "phantom/handler.h"
#include "dMRI/handler.h"
#include "dwi/handler.h"
#include "config/handler.h"
#ifdef __CUDACC__
#include "sim/device_helper.cuh"
Expand Down

0 comments on commit fb8bff7

Please sign in to comment.