1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#
tests/test-pics-gpu: pics nrmse $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra
set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\
$(TOOLDIR)/pics -g -S -r0.001 $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra reco1.ra ;\
$(TOOLDIR)/pics -S -r0.001 $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra reco2.ra ;\
$(TOOLDIR)/nrmse -t 0.000001 reco1.ra reco2.ra ;\
rm *.ra ; cd .. ; rmdir $(TESTS_TMP)
touch $@
tests/test-pics-gpu-noncart: traj scale phantom ones pics nrmse
set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\
$(TOOLDIR)/traj -r -x256 -y64 traj.ra ;\
$(TOOLDIR)/scale 0.5 traj.ra traj2.ra ;\
$(TOOLDIR)/phantom -t traj2.ra ksp.ra ;\
$(TOOLDIR)/ones 3 128 128 1 o.ra ;\
$(TOOLDIR)/pics -S -r0.001 -t traj2.ra ksp.ra o.ra reco1.ra ;\
$(TOOLDIR)/pics -g -S -r0.001 -t traj2.ra ksp.ra o.ra reco2.ra ;\
$(TOOLDIR)/nrmse -t 0.001 reco1.ra reco2.ra ;\
rm *.ra ; cd .. ; rmdir $(TESTS_TMP)
touch $@
tests/test-pics-gpu-weights: pics scale ones nrmse $(TESTS_OUT)/shepplogan.ra $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra
set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\
$(TOOLDIR)/ones 2 128 128 weights.ra ;\
$(TOOLDIR)/scale 0.1 weights.ra weights2.ra ;\
$(TOOLDIR)/pics -S -r0.001 -p weights2.ra $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra reco1.ra ;\
$(TOOLDIR)/pics -g -S -r0.001 -p weights2.ra $(TESTS_OUT)/shepplogan_coil_ksp.ra $(TESTS_OUT)/coils.ra reco2.ra ;\
$(TOOLDIR)/nrmse -t 0.000001 reco2.ra reco1.ra ;\
rm *.ra ; cd .. ; rmdir $(TESTS_TMP)
touch $@
# similar to the non-gpu test this had to be relaxed to 0.01
tests/test-pics-gpu-noncart-weights: traj scale ones phantom pics nrmse $(TESTS_OUT)/coils.ra
set -e; mkdir $(TESTS_TMP) ; cd $(TESTS_TMP) ;\
$(TOOLDIR)/traj -r -x256 -y32 traj.ra ;\
$(TOOLDIR)/scale 0.5 traj.ra traj2.ra ;\
$(TOOLDIR)/phantom -s8 -t traj2.ra ksp.ra ;\
$(TOOLDIR)/ones 4 1 256 32 1 weights.ra ;\
$(TOOLDIR)/scale 0.1 weights.ra weights2.ra ;\
$(TOOLDIR)/pics -S -r0.001 -p weights2.ra -t traj2.ra ksp.ra $(TESTS_OUT)/coils.ra reco1.ra ;\
$(TOOLDIR)/pics -g -S -r0.001 -p weights2.ra -t traj2.ra ksp.ra $(TESTS_OUT)/coils.ra reco2.ra ;\
$(TOOLDIR)/nrmse -t 0.010 reco1.ra reco2.ra ;\
rm *.ra ; cd .. ; rmdir $(TESTS_TMP)
touch $@
TESTS_GPU += tests/test-pics-gpu tests/test-pics-gpu-noncart
TESTS_GPU += tests/test-pics-gpu-weights tests/test-pics-gpu-noncart-weights
|