Skip to content

Commit c590561

Browse files
authored
Remove references to serialbox2 everywhere (#247)
1 parent 319410a commit c590561

File tree

9 files changed

+14
-15
lines changed

9 files changed

+14
-15
lines changed

docs/sphinx/Building.rst

+3-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ To build Serialbox you need a C++11 toolchain, `CMake <http://www.cmake.org/>`_
2121

2222
.. code-block:: console
2323
24-
$ git clone https://github.com/eth-cscs/serialbox2.git
25-
$ cd serialbox2
24+
$ git clone https://github.com/GridTools/serialbox.git
25+
$ cd serialbox
2626
$ mkdir build
2727
$ cd build
2828
@@ -45,7 +45,7 @@ To build Serialbox you need a C++11 toolchain, `CMake <http://www.cmake.org/>`_
4545

4646
The underlying build tool can be invoked directly, of course, e.g ``make -j4``.
4747

48-
#. After Serialbox has finished building, install it from the build directory. The files will be installed into the top-level ``install`` directory (i.e ``serialbox2/install``).
48+
#. After Serialbox has finished building, install it from the build directory. The files will be installed into the top-level ``install`` directory (i.e ``serialbox/install``).
4949

5050
.. code-block:: console
5151
@@ -267,4 +267,3 @@ External project specific variables
267267
**NETCDF_ROOT**:PATH
268268
Install directory of `NetCDF-4 <http://www.unidata.ucar.edu/software/netcdf/>`_.
269269

270-

docs/sphinx/Documentation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ GitHub provides the ability to upload your website to `GitHub Pages <https://pag
4545
4646
$ make deploy-docs
4747
48-
To view your website, head to http://username.github.io/serialbox2 . You may need to adjust the GitHub settings of your Serialbox repository: ``"Settings"`` -> ``"GitHub Pages"`` set the ``"Source"`` to ``"gh-pages branch"`` to enable GitHub Pages.
48+
To view your website, head to http://username.github.io/serialbox . You may need to adjust the GitHub settings of your Serialbox repository: ``"Settings"`` -> ``"GitHub Pages"`` set the ``"Source"`` to ``"gh-pages branch"`` to enable GitHub Pages.
4949

docs/sphinx/Python.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ To read ``foo`` at Savepoint with ``time=1``, you can use one of the `read` meth
141141
Quick start - Visualization
142142
---------------------------
143143

144-
To help visualizing the data serialbox2 contains a built-in :class:`Visualizer <serialbox.visualizer.Visualizer>` based on `matplotlib <https://matplotlib.org/>`_ . The visualizer is able to visualize any 3D numpy field and expects two arguments: a reference to the numpy field and the name of the plot. For exmaple, to visualize the field ``pp``:
144+
To help visualizing the data, Serialbox contains a built-in :class:`Visualizer <serialbox.visualizer.Visualizer>` based on `matplotlib <https://matplotlib.org/>`_ . The visualizer is able to visualize any 3D numpy field and expects two arguments: a reference to the numpy field and the name of the plot. For exmaple, to visualize the field ``pp``:
145145

146146
>>> from serialbox.visualizer import Visualizer
147147
>>> Visualizer(pp, 'pp')

examples/fortran/simple/m_ser.F90

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ SUBROUTINE deserialize_with_perturb(a)
9696
prefix_ref='SerialboxTest',rprecision=rprecision,rperturb=1.0e-5_8)
9797
call fs_create_savepoint('sp1', ppser_savepoint)
9898
call ppser_set_mode(2)
99-
! file: /Volumes/MeteoSwissCode/serialbox2/examples/Fortran/with_pp_ser/m_ser.f90 lineno: #40
99+
! file: /Volumes/MeteoSwissCode/serialbox/examples/Fortran/with_pp_ser/m_ser.f90 lineno: #40
100100
SELECT CASE ( ppser_get_mode() )
101101
CASE(0)
102102
call fs_write_field(ppser_serializer, ppser_savepoint, 'ser_a', a)

examples/gridtools/smagorinsky/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
3232
# We call the find_package-module of Serialbox and gridtools and set the include directories
3333
#
3434
find_package(Serialbox REQUIRED HINTS
35-
"${CMAKE_CURRENT_LIST_DIR}/../serialbox2/install/cmake"
35+
"${CMAKE_CURRENT_LIST_DIR}/../serialbox/install/cmake"
3636
"${SERIALBOX_ROOT}/cmake"
3737
"${SERIALBOX_DIR}/cmake"
3838
"$ENV{SERIALBOX_ROOT}/cmake")

src/serialbox-fortran/m_ser_ftg.f90

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
!
88
!------------------------------------------------------------------------------
99
!
10-
!+ This module contains the FortranTestGenerator (FTG) frontend of Serialbox2.
10+
!+ This module contains the FortranTestGenerator (FTG) frontend of Serialbox.
1111
!+ For FTG see https://github.com/fortesg/fortrantestgenerator
1212
!
1313
!------------------------------------------------------------------------------
@@ -19,7 +19,7 @@ MODULE m_ser_ftg
1919
! Description:
2020
!
2121
! This module contains simplified wrapper subroutines for the Fortran interface
22-
! of Serialbox2 (m_serialize.f90) to be used by the FortranTestGenerator
22+
! of Serialbox (m_serialize.f90) to be used by the FortranTestGenerator
2323
! (https://github.com/fortesg/fortrantestgenerator), plus additional subroutines
2424
! for allocating array variables based on the stored sizes and bounds.
2525
!
@@ -3675,4 +3675,4 @@ SUBROUTINE ftg_allocate_and_read_allocatable_double_4d(fieldname, field, rpertur
36753675
END IF
36763676
END SUBROUTINE ftg_allocate_and_read_allocatable_double_4d
36773677

3678-
END MODULE m_ser_ftg
3678+
END MODULE m_ser_ftg

src/serialbox-fortran/m_ser_ftg_cmp.f90

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
!
88
!------------------------------------------------------------------------------
99
!
10-
!+ This module contains the FortranTestGenerator (FTG) frontend of Serialbox2.
10+
!+ This module contains the FortranTestGenerator (FTG) frontend of Serialbox.
1111
!+ For FTG see https://github.com/fortesg/fortrantestgenerator
1212
!
1313
!------------------------------------------------------------------------------

src/serialbox-python/sdb/sdbgui/mainwindow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535

3636
class MainWindow(QMainWindow):
37-
OnlineHelpUrl = QUrl("https://eth-cscs.github.io/serialbox2/sdb.html")
37+
OnlineHelpUrl = QUrl("https://GridTools.github.io/serialbox/sdb.html")
3838

3939
def __init__(self):
4040
super().__init__()

tools/cscs-scripts/submit.kesch.slurm

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
2-
#SBATCH --job-name=serialbox2-unittest
2+
#SBATCH --job-name=serialbox-unittest
33
#SBATCH --nodes=1
44
#SBATCH --ntasks=1
55
#SBATCH --ntasks-per-node=1
66
#SBATCH --ntasks-per-socket=1
7-
#SBATCH --output=serialbox2-unittest.out
7+
#SBATCH --output=serialbox-unittest.out
88
#SBATCH --partition=debug
99
#SBATCH --time=00:2:00
1010
#SBATCH --cpus-per-task=12

0 commit comments

Comments
 (0)