Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
d260790e
"docs/source/vscode:/vscode.git/clone" did not exist on "55fe8a81ec5deab319c7c6b02913c21273b764ca"
Unverified
Commit
d260790e
authored
Sep 26, 2024
by
Jakob Görgen
Browse files
fixed .as_posix error in join_paths method
parent
22d37fcb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
experiments/pyexps/netperf_sysconf.py
experiments/pyexps/netperf_sysconf.py
+1
-2
experiments/simbricks/orchestration/instantiation/base.py
experiments/simbricks/orchestration/instantiation/base.py
+1
-1
No files found.
experiments/pyexps/netperf_sysconf.py
View file @
d260790e
...
...
@@ -11,9 +11,8 @@ HOST0 -- NIC0 ------ SWITCH ------ NIC1 -- HOST1
This scripts generates the experiments with all the combinations of different execution modes
"""
# host_types = ['qemu', 'gem5', 'qt']
host_types
=
[
'gem5'
]
nic_types
=
[
'i40e'
,
'vr'
]
nic_types
=
[
'i40e'
]
net_types
=
[
'switch'
]
experiments
=
[]
...
...
experiments/simbricks/orchestration/instantiation/base.py
View file @
d260790e
...
...
@@ -410,7 +410,7 @@ class Instantiation(util_base.IdObj):
print
(
f
"joined=
{
joined
}
"
)
if
enforce_existence
and
not
joined
.
exists
():
raise
Exception
(
f
"couldn't join
{
base
}
and
{
relative_path
}
"
)
return
joined
.
absolute
()
return
joined
.
absolute
()
.
as_posix
()
def
join_repo_base
(
self
,
relative_path
:
str
)
->
str
:
return
self
.
_join_paths
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment