File tree Expand file tree Collapse file tree 5 files changed +6
-7
lines changed
Expand file tree Collapse file tree 5 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ endif()
1414
1515include (${CMAKE_CURRENT_LIST_DIR} /cmake/ADIOSFunctions.cmake)
1616
17- setup_version(2.9.1 )
17+ setup_version(2.9.2 )
1818
1919project (ADIOS2 VERSION ${ADIOS2_VERSION} )
2020
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Once ADIOS2 is installed refer to:
7272
7373## Releases
7474
75- * Latest release: [ v2.9.1 ] ( https://github.com/ornladios/ADIOS2/releases/tag/v2.9.1 )
75+ * Latest release: [ v2.9.2 ] ( https://github.com/ornladios/ADIOS2/releases/tag/v2.9.2 )
7676
7777* Previous releases: [ https://github.com/ornladios/ADIOS2/releases ] ( https://github.com/ornladios/ADIOS2/releases )
7878
Original file line number Diff line number Diff line change 7676# The short X.Y version.
7777version = u'2'
7878# The full version, including alpha/beta/rc tags.
79- release = u'2.9.1 '
79+ release = u'2.9.2 '
8080
8181# The language for content autogenerated by Sphinx. Refer to documentation
8282# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -132,12 +132,12 @@ Notes:
132132 $ export CMAKE_PREFIX_PATH=/opt/foo/bar
133133 $ cmake -DHDF5_ROOT=/opt/hdf5/1.13.0 ../ADIOS2
134134
135- Example: the following configuration will build, test and install under /opt/adios2/2.9.1 an optimized (Release) version of ADIOS2.
135+ Example: the following configuration will build, test and install under /opt/adios2/2.9.2 an optimized (Release) version of ADIOS2.
136136
137137.. code-block :: bash
138138
139139 $ cd build
140- $ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.1 -DCMAKE_BUILD_Type=Release ../ADIOS2
140+ $ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.2 -DCMAKE_BUILD_Type=Release ../ADIOS2
141141 $ make -j16
142142 $ ctest
143143 $ make install
Original file line number Diff line number Diff line change 22
33include (ProcessorCount)
44ProcessorCount(NCPUS)
5- math (EXPR N2CPUS "${NCPUS} *2" )
65
76set (ENV{CC} gcc)
87set (ENV{CXX} g++)
@@ -24,7 +23,7 @@ CMAKE_C_FLAGS:STRING=-Wall
2423CMAKE_CXX_FLAGS:STRING=-Wall
2524CMAKE_Fortran_FLAGS:STRING=-Wall
2625
27- MPIEXEC_MAX_NUMPROCS:STRING=${N2CPUS }
26+ MPIEXEC_MAX_NUMPROCS:STRING=${NCPUS }
2827" )
2928
3029set (CTEST_CMAKE_GENERATOR "Ninja" )
You can’t perform that action at this time.
0 commit comments