From ef5bfc71b60071bbab20df7b95936f593a17e9e5 Mon Sep 17 00:00:00 2001 From: Ryan Kierulf Date: Tue, 18 Jun 2024 15:29:50 -0500 Subject: [PATCH] Add some more temporary printing --- KomaMRICore/src/simulation/Bloch/BlochSimulationMethod.jl | 1 + KomaMRICore/test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/KomaMRICore/src/simulation/Bloch/BlochSimulationMethod.jl b/KomaMRICore/src/simulation/Bloch/BlochSimulationMethod.jl index 3afec1767..9a26e0839 100644 --- a/KomaMRICore/src/simulation/Bloch/BlochSimulationMethod.jl +++ b/KomaMRICore/src/simulation/Bloch/BlochSimulationMethod.jl @@ -65,6 +65,7 @@ function run_spin_precession!( exp_argument1 = one_im .* ϕ exp_argument2 = - tp' ./ p.T2 exp_argument = exp_argument1 .+ exp_argument2 + println(typeof(exp_argument)) exp_result = exp.(exp_argument) elementwise_multiplication = M.xy .* exp_result Mxy = [M.xy elementwise_multiplication] diff --git a/KomaMRICore/test/runtests.jl b/KomaMRICore/test/runtests.jl index c6dd5900d..dc2fee8c7 100644 --- a/KomaMRICore/test/runtests.jl +++ b/KomaMRICore/test/runtests.jl @@ -166,7 +166,7 @@ end sim_params = KomaMRICore.default_sim_params() sim_params["return_type"] = "mat" sim_params["gpu"] = USE_GPU - sig = @suppress simulate(obj, seq, sys; sim_params) + sig = simulate(obj, seq, sys; sim_params) # Test signal_to_raw_data raw = signal_to_raw_data(sig, seq)