ISAACOverview :: Library Doc :: Server Doc :: JSON Commands

In Situ Animation of Accelerated Computations

Sample rendering of ISAAC

ISAAC is an open source (LGPL) C++ template library for live in situ visualization and steering of highly distributed simulations or data analysis processes running on HPC systems made from the Computational Radiation Physics group of the Helmholtz-Zentrum Dresden – Rossedorf (HZDR). The goals of ISAAC are

To achieve these goals ISAAC uses Alpaka to abstract arbitrary hardware accelerators, which the simulation may use. This does not only include CUDA® programmable Nvidia® GPUs but also Thread building blocks for Intel® Xeon Phi™ accelerators or even OpenMP for using classical multicore CPUs the same way like a hardware accelerator. However as especially existing CUDA® programs may have problems to use Alpaka beside CUDA® ISAAC also supports native CUDA®.

To not make any assumptions about the structure of the simulation data, ISAAC does not define, how data structures need to look like, but how to access these data. For every field of the simulation which shall be visualized a C++ class needs to be defined, which tells ISAAC about it's properties and how to get a datum. At the moment ISAAC only supports ray casting of volume data to create a rendering as glowing gas or as iso surface. While stepping through the volume ISAAC uses the defined classes to directly access the data without knowing, what the background data structure looks like - or even whether it exists at all.

As pure simulation data - independently how they are stored - may not be suited for a direct visualization or it may not be obvious which part of the data is interesting (e.g. which dimension in a vector field) before running the simulation, ISAAC implements so called Functor Chains for transforming the data before they are using the the raycasting algorithm. So the data is read from a position in the volume, transfered using the Functor Chain, classified using a classical transfer function and then shown as glowing gas or iso surface.

Sample rendering of ISAAC

Design overview

ISAAC consists of 3 parts: The in situ library, a central server and a client.

The in situ library is compiled (not linked!) with the simulation as it is compiled itself. As it is licensed under the 3rd version of the LGPL it is also possible for closed source applications to use ISAAC without the need to release any simulation code (of course except for any changes made in ISAAC itself) as open source. As much informations as possible are given as template parameters at compile time. With this the compiler is able to optimize the raycasting very simulation and data structure specific without the need of ISAAC to know the structures itself. The ISAAC library does the volume rendering, but is also used for sending and receiving messages from and to steering clients.

Unfortunately most of the time it is not directly possible for a client to connect to a simulation running on a high performance cluster. Among others this is one reason, that ISAAC also consists of a central server, which is installed on a computer, which is accessable from inside and outside the cluster (most of the times the head or login node). But the server does not only forward messages and images between the simulations and clients, it also multiplies the data if more than one client is watchting the same visualization and it creates stream (e.g. h264). The server also has rudimentary functions to stream visualization output directly to RTMP services like Twitch™ or Youtube™.

In fact ISAAC has no official client, but a reference implementation of an HTML5 Client, which shall be used to addapt it to the very different demands of simulations. The ISAAC server has at the moment two ways to receive connections from clients: Direct TCP or websockets. The first can be used to directly connect with telnet to the ISAAC Server to get the raw JSON data. Every data transfer (except streams) between any part of ISAAC uses JSON encapsulated data. This makes it easy to implement alternative clients and to send data to the visualization or simulation. The HTML5 client uses websockets to receive the messages from the server, which are converted to real Javascript objects automaticly.

The whole design of ISAAC can be seen in the picture below.

Whole ISAAC design
Sample rendering of ISAAC

Features of ISAAC

ISAAC is a very young project, created as result of a diploma thesis in the end of 2015 and still lacks a lot of features, but is already capable of

However there are even more features planed for the future:

So give ISAAC a try right now:
github.com/ComputationalRadiationPhysics/isaac

HDZR ISAAC

Copyright 2016 Alexander Matthes

a.matthes@hzdr.de