Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
predtuner
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
predtuner
Commits
2d3ee599
Commit
2d3ee599
authored
4 years ago
by
Yifan Zhao
Browse files
Options
Downloads
Patches
Plain Diff
User friendliness tweaks in PipedBinary app
parent
6ff4237c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
predtuner/approxapp.py
+1
-1
1 addition, 1 deletion
predtuner/approxapp.py
predtuner/pipedbin.py
+3
-2
3 additions, 2 deletions
predtuner/pipedbin.py
with
4 additions
and
3 deletions
predtuner/approxapp.py
+
1
−
1
View file @
2d3ee599
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
predtuner/pipedbin.py
+
3
−
2
View file @
2d3ee599
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment