Skip to content
Snippets Groups Projects
Commit 2d3ee599 authored by Yifan Zhao's avatar Yifan Zhao
Browse files

User friendliness tweaks in PipedBinary app

parent 6ff4237c
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ class Config: ...@@ -110,7 +110,7 @@ class Config:
) -> None: ) -> None:
self.qos = qos self.qos = qos
self.perf = perf self.perf = perf
self.knobs = knobs self.knobs = dict(sorted(knobs.items()))
self.test_qos: Optional[float] = test_qos self.test_qos: Optional[float] = test_qos
......
...@@ -122,8 +122,7 @@ class PipedBinaryApp(ModeledApp): ...@@ -122,8 +122,7 @@ class PipedBinaryApp(ModeledApp):
def _stop_binary(self): def _stop_binary(self):
if self.process.poll() is not None: if self.process.poll() is not None:
return return
with self.fifo_w_file.open("w") as f: self.process.terminate()
f.write("stop")
def _check_running(self): def _check_running(self):
return_code = self.process.poll() return_code = self.process.poll()
...@@ -189,6 +188,8 @@ def parse_hpvm_tensor(buffer: bytes) -> torch.Tensor: ...@@ -189,6 +188,8 @@ def parse_hpvm_tensor(buffer: bytes) -> torch.Tensor:
data = np.frombuffer(buffer, dtype=np.float32, offset=offset, count=nelem) data = np.frombuffer(buffer, dtype=np.float32, offset=offset, count=nelem)
offset += nelem * 4 offset += nelem * 4
batches.append(data.reshape(*dims)) batches.append(data.reshape(*dims))
if not batches:
raise ValueError("No tensor returned from HPVM binary")
batches = np.concatenate(batches, axis=0) batches = np.concatenate(batches, axis=0)
return torch.from_numpy(batches).squeeze(-1).squeeze(-1) return torch.from_numpy(batches).squeeze(-1).squeeze(-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