Skip to content

Commit caf4815

Browse files
cmd -> bash (syntax highligt)
1 parent 1ea9daf commit caf4815

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/modules/tutorial/pages/gettingstarted.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@
33
== Installation
44

55
1. Clone the Repository
6-
[source,cmd]
6+
[source,bash]
77
----
88
git clone https://github.com/feelpp/benchmarking.git
99
----
1010

1111
2. Use a python virtual environment [Optional]
12-
[source,cmd]
12+
[source,bash]
1313
----
1414
python3 -m venv .venv
1515
source .venv/bin/activate
1616
----
1717

1818
3. Build the project
19-
[source,cmd]
19+
[source,bash]
2020
----
2121
pip3 wheel --no-deps --wheel-dir dist .
2222
----
2323

2424
4. Install requirements
2525

2626
This will install necessary dependencies as well as the built project from the previous step.
27-
[source,cmd]
27+
[source,bash]
2828
----
2929
python3 -m pip install -r requirements.txt
3030
----
@@ -38,7 +38,7 @@ This Feel++ Benchmarking "Hello World" application will compute the sum of an ar
3838
Additionally, the app will measure the time taken to perform the partial sum, and will save it under a _scalability.json_ file.
3939

4040
The executable is already provided as _tests/data/parallelSum_. You can update it and recompile it for a specific config as needed.
41-
[source,cmd]
41+
[source,bash]
4242
----
4343
mpic++ -std=c++17 -o test/data/parallelSum test/data/parallelSum.cpp
4444
----
@@ -51,7 +51,7 @@ mpic++ -std=c++17 -o test/data/parallelSum test/data/parallelSum.cpp
5151
Configuration files might require some changes for specific configurations depending on the system you are running the framework.
5252

5353
Finally, to benchmark the test application, generate the reports and plot the figures, run
54-
[source,cmd]
54+
[source,bash]
5555
----
5656
execute-benchmark --machine-config config/machines/local.json \
5757
--benchmark-config config/test_parallelSum/parallelSum.json \

0 commit comments

Comments
 (0)