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

Remove spurious squeeze

parent 5a69abef
No related branches found
No related tags found
1 merge request!12Snapshot: field test deployed version as of end of run 202201
...@@ -126,7 +126,7 @@ class BaseGpuRunner: ...@@ -126,7 +126,7 @@ class BaseGpuRunner:
return self.reshaped_data_gpu.get(out=out) return self.reshaped_data_gpu.get(out=out)
def load_data(self, raw_data): def load_data(self, raw_data):
self.input_data_gpu.set(np.squeeze(raw_data)) self.input_data_gpu.set(raw_data)
def load_cell_table(self, cell_table): def load_cell_table(self, cell_table):
self.cell_table_gpu.set(cell_table) self.cell_table_gpu.set(cell_table)
......
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