Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
monitor-NaviX
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
Container registry
Model registry
Operate
Environments
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
ETP-HTC
monitor-NaviX
Commits
e43662a3
Commit
e43662a3
authored
6 years ago
by
Christoph Heidecker
Browse files
Options
Downloads
Patches
Plain Diff
* Added TOPAS JEC benchmarks
parent
5cb2c2a3
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NaviXMon.py
+2
-1
2 additions, 1 deletion
NaviXMon.py
navimon/inputData.py
+4
-0
4 additions, 0 deletions
navimon/inputData.py
navimon/predictionScenario.py
+10
-0
10 additions, 0 deletions
navimon/predictionScenario.py
with
16 additions
and
1 deletion
NaviXMon.py
+
2
−
1
View file @
e43662a3
...
...
@@ -41,7 +41,8 @@ def __init__():
# workflow = 'higgs60sg'
# workflow = 'copy60topas'
# workflow = 'copy_tsy_v1'
workflow
=
'
copy_tsy_v2
'
# workflow = 'copy_tsy_v2'
workflow
=
'
jec_topas
'
input_data
=
InputData
(
workflow
)
print
(
'
Loading file list:
'
)
...
...
This diff is collapsed.
Click to expand it.
navimon/inputData.py
+
4
−
0
View file @
e43662a3
...
...
@@ -16,6 +16,8 @@ class InputData:
self
.
copy_tsy_v1
()
elif
workflow
==
'
copy_tsy_v2
'
:
self
.
copy_tsy_v2
()
elif
workflow
==
'
jec_topas
'
:
self
.
jec_topas
()
else
:
print_with_color
(
"
WARNING: Input data for
"
+
str
(
workflow
)
+
"
not found!
\n
Using default values!
"
,
color
=
'
yellow
'
)
...
...
@@ -87,3 +89,5 @@ class InputData:
# self.navix_monitor_file_list = [r'data/copy/06-tsy/NaviX-4.mon.tsy.crashrun',
# r'data/copy/06-tsy/NaviX-5.mon.tsy']
def
jec_topas
(
self
):
self
.
navix_monitor_file_list
=
[
r
'
data/jec/topas/NaviX_TOPAS_JEC_v1.mon
'
]
This diff is collapsed.
Click to expand it.
navimon/predictionScenario.py
+
10
−
0
View file @
e43662a3
...
...
@@ -21,6 +21,8 @@ class Prediction:
self
.
copy_tsy_v1
()
elif
workflow
==
'
copy_tsy_v2
'
:
self
.
copy_tsy_v2
()
elif
workflow
==
'
jec_topas
'
:
self
.
jec_topas
()
else
:
print_with_color
(
"
WARNING: Prediction model
"
+
str
(
workflow
)
+
"
not found!
\n
Using default values!
"
,
color
=
'
yellow
'
)
...
...
@@ -73,3 +75,11 @@ class Prediction:
self
.
cache_rate_per_node
=
100.
# Cache speed in MB/s
# self.cache_rate_per_node = 46. # Cache speed in MB/s
self
.
workflow_rate_max
=
2000.
# Maximum speed the workflow allows per core
def
jec_topas
(
self
):
self
.
data_total
=
1600
*
10
*
60
# about 500MB per file for Higgs skimming, 3.3GB per file for /dev/null tests
self
.
number_nodes
=
3
self
.
number_slots_per_node
=
20
# HTCondor slots
self
.
remote_rate_total
=
5000
/
8
# 5Gb/s converted to MB/s
self
.
cache_rate_per_node
=
1000
# Cache speed in MB/s
self
.
workflow_rate_max
=
2000
# Maximum speed the workflow allows per core
\ No newline at end of file
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