generated from feelpp/feelpp-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Values extraction #53 up .adoc output
- Loading branch information
1 parent
5524a36
commit 401f0fd
Showing
8 changed files
with
247 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
docs/modules/gaya/pages/output_20240804-ThermalBridgesCase3.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
80
docs/modules/gaya/pages/output_20240804-proneEye-M2-simple.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.") | ||
---- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters