Skip to content

Commit

Permalink
Values extraction #53 up .adoc output
Browse files Browse the repository at this point in the history
  • Loading branch information
tanguypierre committed Aug 4, 2024
1 parent 5524a36 commit 401f0fd
Show file tree
Hide file tree
Showing 8 changed files with 247 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/modules/discoverer/pages/output_20231201-1430.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
95 changes: 95 additions & 0 deletions docs/modules/gaya/pages/output_20240804-ThermalBridgesCase3.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@

= Reframe Report for gaya
:page-plotly: true
:page-jupyter: true
:page-tags: case
:description: Performance report for gaya on 2024-08-04T20:26:13+0200
:page-illustration: gaya.jpg
:author: Your Name
:revdate: 2024-08-04T20:26:13+0200

== Test Summary

* Total Tests: 7
* Failures: 0
* Testcases
** ToolboxTest %nbTask=384
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=256
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=128
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=64
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=32
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=16
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=8
[source,json]
----
{'OMP_NUM_THREADS': 1}
----


[%dynamic%close,python]
----
from feelpp.benchmarking.reframe.report import Report
report=Report(file_path="docs/modules/gaya/pages/reports/heat/20240804-ThermalBridgesCase3.json")
----

=== Performance by Simulation Steps

[%dynamic%raw%open,python]
----
fig=report.plotPerformanceByStep()
fig.show()
----

=== Performance by Number of Tasks

[%dynamic%raw%open,python]
----
fig=report.plotPerformanceByTask()
fig.show()
----

=== Speedup of the simulation Steps

.Speedup
[%dynamic%raw%open,python]
----
fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
80 changes: 80 additions & 0 deletions docs/modules/gaya/pages/output_20240804-proneEye-M2-simple.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@

= Reframe Report for gaya
:page-plotly: true
:page-jupyter: true
:page-tags: case
:description: Performance report for gaya on 2024-08-04T21:18:05+0200
:page-illustration: gaya.jpg
:author: Your Name
:revdate: 2024-08-04T21:18:05+0200

== Test Summary

* Total Tests: 4
* Failures: 0
* Testcases
** ToolboxTest %nbTask=384
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=256
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=128
[source,json]
----
{'OMP_NUM_THREADS': 1}
----
** ToolboxTest %nbTask=64
[source,json]
----
{'OMP_NUM_THREADS': 1}
----


[%dynamic%close,python]
----
from feelpp.benchmarking.reframe.report import Report
report=Report(file_path="docs/modules/gaya/pages/reports/heatfluid/20240804-proneEye-M2-simple.json")
----

=== Performance by Simulation Steps

[%dynamic%raw%open,python]
----
fig=report.plotPerformanceByStep()
fig.show()
----

=== Performance by Number of Tasks

[%dynamic%raw%open,python]
----
fig=report.plotPerformanceByTask()
fig.show()
----

=== Speedup of the simulation Steps

.Speedup
[%dynamic%raw%open,python]
----
fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
12 changes: 12 additions & 0 deletions docs/modules/karolina/pages/output_20231207-1600.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
12 changes: 12 additions & 0 deletions docs/modules/meluxina/pages/output_20231209-0040.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
12 changes: 12 additions & 0 deletions docs/modules/meluxina/pages/output_20231211-0600.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
12 changes: 12 additions & 0 deletions docs/modules/meluxina/pages/output_20231211-1248.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----
12 changes: 12 additions & 0 deletions docs/modules/meluxina/pages/output_kub_scenario0.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,15 @@ fig=report.plotSpeedup()
fig.show()
----

=== Speedup for partial performances

[%dynamic%raw%open,python]
----
if report.partial:
for name, value in report.partialDict.items():
if value != []:
fig = report.plotPartialSpeedup(key=name)
fig.show()
else:
print("Performances of each part inside an execution step have not been recorded yet.")
----

0 comments on commit 401f0fd

Please sign in to comment.