Go to file
2022-09-29 16:51:59 +02:00
cfg Use non-null gradient mode for task id view 2022-09-27 17:22:06 +02:00
doc Store the clock offset table inside the trace 2022-09-29 14:28:47 +02:00
nix Always enable RT tests if possible 2022-09-29 12:41:59 +02:00
test Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
.gitignore Remove unneeded files from gitignore 2021-12-09 14:17:02 +01:00
.gitlab-ci.yml Always fetch the repositories again 2022-09-21 13:37:23 +02:00
chan.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
chan.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
CMakeLists.txt Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
common.h Protect some sections agains clang-format 2022-09-29 16:51:59 +02:00
compat.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
COPYING Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01:00
dump.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_kernel.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_nanos6.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_nodes.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_nosv.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_openmp.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_ovni.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_tampi.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_task.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu_task.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
emu.c Always try to load the offset file 2022-09-29 16:49:29 +02:00
emu.h Protect some sections agains clang-format 2022-09-29 16:51:59 +02:00
heap.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
mkdocs.yml Store the clock offset table inside the trace 2022-09-29 14:28:47 +02:00
ovni2prv.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
ovni.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
ovni.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
ovnisync.c Store the clock offset table inside the trace 2022-09-29 14:28:47 +02:00
parson.c Store CPU list in a metadata.json file 2021-08-03 17:48:37 +02:00
parson.h Store CPU list in a metadata.json file 2021-08-03 17:48:37 +02:00
pcf.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
pcf.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
plot-drift.py Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01:00
prv.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
prv.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
README.txt Update README 2022-09-12 16:16:11 +02:00
sort.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
trace.c Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
trace.h Use SPDX license identifiers 2022-09-29 14:16:47 +02:00
uthash.h Add nosv task support 2021-07-29 17:46:25 +02:00
utlist.h Remove asserts from utlist.h 2021-12-09 16:55:42 +01:00

           ovni - Obtuse but Versatile Nanoscale Instrumentation

The ovni instrumentation project is composed of a runtime library (libovni.so),
which generates a fast binary trace, and post-processing tools such as the
emulator (emu), which transform the binary trace to the PRV format, suitable to
be loaded in Paraver.

The libovni.so library is licensed under MIT, while the rest of tools are GPLv3
unless otherwise stated.

For more information, take a look at the doc/ directory.

To build ovni you would need a C compiler, MPI and cmake version 3.20 or newer.
To compile in build/ and install into $prefix use:

  % mkdir build
  % cd build
  % cmake -DCMAKE_INSTALL_PREFIX=$prefix ..
  % make
  % make install

To run the tests you can run (from the build directory):

  % make test

See cmake(1) and cmake-env-variables(7) to see more information about
the variables affecting the generation and build process.