diff options
-rwxr-xr-x | benchmark.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/benchmark.py b/benchmark.py index 7988399..4c46a1f 100755 --- a/benchmark.py +++ b/benchmark.py @@ -186,7 +186,7 @@ if __name__ == '__main__': gpu = GPU() gpu.load_geometry(lbne, print_usage=False) - #print '%s track steps/s' % ray_trace(gpu) - #print '%s loaded photons/s' % load_photons(gpu) - #print '%s propagated photons/s' % propagate(gpu) + print '%s track steps/s' % ray_trace(gpu) + print '%s loaded photons/s' % load_photons(gpu) + print '%s propagated photons/s' % propagate(gpu) print '%s histogrammed 100 MeV events/s' % pdf(gpu, max(lbne.pmtids)) |