Skip to content

MeteoSwiss-APN/serialbox

 
 

Repository files navigation

serialbox

Introduction

The Serialbox is a set of tools around serialization / deserialization of data. The box is used in several projects for building validation frameworks against reference runs. This is useful in the scope of rewrite of large codes, or when porting codes to multiple computing architectures. As an example, porting scientific codes to graphical processing units, that require continuous validation against the existing x86 code.

Structure

  • src/ : It the main core of the Serialbox, written in C++, which provides
    • C++ functionality that can be used to serialize data from a reference run.
    • Interfaces for deserializing into memory data structures
    • Control the metadata of the fields being serialized/deserialized.
    • src/utils: logger and other C++ utilities
    • wrapper: a C wrapper that allows to interoperate the core C++ functionality from other languages like Fortran
  • doc/ : latex documentation, tutorials and presentations
  • python/ : contains various python tools based on the Serialbox format, namely
    • pp_ser: a tiny DSL/parser that facilitates inserting Serialbox statements into your Fortran Code.
    • Visualizer: a python tool that helps visualizing serialized data
  • tools/ : various tools used to validation, dumping, converting or comparing of multiple serialized runs, etc.
  • fortran/ : fortran interfaces to the Serialbox C++ functionality

Building

simply mkdir build; cd build; cmake ../; make [install]

for building the documentation make doc

CSCS Environment

On daint and kesch a Serialbox installation is provided by jenkins (daily checkout of MeteoSwiss-APN master). If you want to compile and install Serialbox manually you can do so using the build environment.

Go to your checkout of Serialbox, then execute:

git clone git@github.com:C2SM-RCM/buildenv.git
./buildenv/package_builder/build_apkg.sh -p serialbox -d . --local -c $COMPILER

This will build and install serialbox into the ./install folder with the compiler $COMPILER (usually gnu or cray). If the -c $COMPILER option is omitted the script will build against all available targets.

Refer to the script for further configuration options.

About

Data serialization library and tools for C/C++ and Fortran

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 88.2%
  • Python 6.1%
  • Fortran 4.0%
  • C 1.2%
  • Other 0.5%