Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gpfs-policy
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rc
gpfs-policy
Commits
ea3eea80
Commit
ea3eea80
authored
5 months ago
by
Matthew K Defenderfer
Browse files
Options
Downloads
Patches
Plain Diff
Add example notebook for full analysis
parent
7452dc22
No related branches found
No related tags found
1 merge request
!35
Add example notebook for full analysis
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
deps.yml
+2
-0
2 additions, 0 deletions
deps.yml
gpfs-aggregation.ipynb
+1232
-0
1232 additions, 0 deletions
gpfs-aggregation.ipynb
src/rc_gpfs/report/plotting.py
+1
-1
1 addition, 1 deletion
src/rc_gpfs/report/plotting.py
with
1235 additions
and
1 deletion
deps.yml
+
2
−
0
View file @
ea3eea80
...
...
@@ -182,6 +182,7 @@ dependencies:
-
pillow=11.0.0=py311h49e9ac3_0
-
pip=24.3.1=pyh8b19718_2
-
platformdirs=4.3.6=pyhd8ed1ab_1
-
plotly=5.24.1=pyhd8ed1ab_1
-
prompt-toolkit=3.0.48=pyha770c72_1
-
psutil=6.1.0=py311h9ecbd09_0
-
pthread-stubs=0.4=hb9d3cd8_1002
...
...
@@ -215,6 +216,7 @@ dependencies:
-
spdlog=1.14.1=hed91bc2_1
-
stack_data=0.6.3=pyhd8ed1ab_1
-
tblib=3.0.0=pyhd8ed1ab_1
-
tenacity=9.0.0=pyhd8ed1ab_1
-
tk=8.6.13=noxft_h4845f30_101
-
toolz=1.0.0=pyhd8ed1ab_1
-
tornado=6.4.2=py311h9ecbd09_0
...
...
This diff is collapsed.
Click to expand it.
gpfs-aggregation.ipynb
0 → 100644
+
1232
−
0
View file @
ea3eea80
This diff is collapsed.
Click to expand it.
src/rc_gpfs/report/plotting.py
+
1
−
1
View file @
ea3eea80
...
...
@@ -18,7 +18,7 @@ def choose_appropriate_storage_unit(size,starting_unit='B'):
except
(
ValueError
):
raise
(
f
"
{
starting_unit
}
is not a valid storage unit. Choose from
'
B
'
,
'
kB
'
,
'
MB
'
,
'
GB
'
, or
'
TB
'"
)
while
((
size
/
1024
)
>=
1
)
&
(
exp
<
=
4
):
while
((
size
/
1024
)
>=
1
)
&
(
exp
<
4
):
size
=
size
/
1024
exp
+=
1
return
exp
,
units
[
exp
]
...
...
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