Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
powercap-measurement
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
Container 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
Jayesh Badwaik
powercap-measurement
Commits
c327ca9f
Verified
Commit
c327ca9f
authored
2 months ago
by
Jayesh Badwaik
Browse files
Options
Downloads
Patches
Plain Diff
- go a little further to see the plateu
parent
7a2ef002
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
benchmark.yml
+1
-1
1 addition, 1 deletion
benchmark.yml
post/plotting.py
+2
-1
2 additions, 1 deletion
post/plotting.py
with
5 additions
and
4 deletions
.gitlab-ci.yml
+
2
−
2
View file @
c327ca9f
...
...
@@ -4,7 +4,7 @@ variables:
powercap-measurement
:
variables
:
CUSTOM_CI_BUILDS_DIR
:
/p/scratch/cjsc/badwaik1.exacb/
CUSTOM_CI_BUILDS_DIR
:
/p/scratch/cjsc/badwaik1.exacb/
job/$CI_JOB_ID
id_tokens
:
SITE_ID_TOKEN
:
aud
:
"
https://gitlab.jsc.fz-juelich.de"
...
...
@@ -42,5 +42,5 @@ powercap-plotting:
-
python -m venv venv
-
source venv/bin/activate
-
pip install matplotlib
-
python post/plotting.py --input benchmark.csv --output benchmark.pdf
-
python post/plotting.py --input benchmark.csv --output benchmark.pdf
--powercap
300
This diff is collapsed.
Click to expand it.
benchmark.yml
+
1
−
1
View file @
c327ca9f
...
...
@@ -12,7 +12,7 @@ parameterset:
-
name
:
benchParam
parameter
:
-
name
:
inputpowercap
_
:
"
100,
120,
140,
160,
180,
200,
220,
240,
260,
280,
300"
_
:
"
100,
120,
140,
160,
180,
200,
220,
240,
260,
280,
300
,
320,
340,
360,
380,
400
"
-
name
:
systemParam
init_with
:
"
platform.xml:systemParameter"
parameter
:
...
...
This diff is collapsed.
Click to expand it.
post/plotting.py
+
2
−
1
View file @
c327ca9f
...
...
@@ -10,6 +10,7 @@ if __name__ == "__main__":
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"
--input
"
,
help
=
"
input file
"
)
parser
.
add_argument
(
"
--output
"
,
help
=
"
output file
"
)
parser
.
add_argument
(
"
--powercap
"
,
help
=
"
powercap
"
)
args
=
parser
.
parse_args
()
filename
=
args
.
input
...
...
@@ -25,7 +26,7 @@ if __name__ == "__main__":
fig
,
ax
=
matplotlib
.
pyplot
.
subplots
()
ax
.
plot
(
x
,
y
)
ax
.
set
(
xlabel
=
"
power
"
,
ylabel
=
"
performance
"
,
title
=
"
Graph
"
)
ax
.
set
(
xlabel
=
"
power
"
,
ylabel
=
"
performance
"
,
title
=
"
BMC Powercap=
"
+
str
(
args
.
powercap
)
)
matplotlib
.
pyplot
.
savefig
(
args
.
output
)
...
...
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