Skip to content
Snippets Groups Projects
Commit 86b53334 authored by David Hammer's avatar David Hammer
Browse files

Remove debugging spam

parent a0b52735
No related branches found
No related tags found
2 merge requests!12Snapshot: field test deployed version as of end of run 202201,!6Draft: add Jungfrau correction device
...@@ -93,12 +93,8 @@ class JungfrauGpuRunner(base_gpu.BaseGpuRunner): ...@@ -93,12 +93,8 @@ class JungfrauGpuRunner(base_gpu.BaseGpuRunner):
"burst_mode": self.memory_cells > 1, "burst_mode": self.memory_cells > 1,
} }
) )
for i, line in enumerate(kernel_source.split("\n")):
print(f"{i}: {line}")
self.source_module = cupy.RawModule(code=kernel_source) self.source_module = cupy.RawModule(code=kernel_source)
print("Got raw module")
self.correction_kernel = self.source_module.get_function("correct") self.correction_kernel = self.source_module.get_function("correct")
print("Got kernel")
def _get_raw_for_preview(self): def _get_raw_for_preview(self):
return self.input_data_gpu.transpose(0, 2, 1) return self.input_data_gpu.transpose(0, 2, 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment