Go to file
2021-11-19 16:48:53 +01:00
cfg Further renames of Nanos6 labels and others 2021-11-12 16:15:33 +01:00
doc Further renames of Nanos6 labels and others 2021-11-12 16:15:33 +01:00
test Fix memory leaks 2021-11-19 16:48:53 +01:00
.gitignore Ignore only the build directory 2021-11-16 19:20:50 +01:00
chan.c Transform bad exits into aborts in channels 2021-11-19 16:47:35 +01:00
chan.h Fix some warnings for clang and intel compilers 2021-11-16 19:20:50 +01:00
CMakeLists.txt Add address sanitizer build type 2021-11-19 16:48:53 +01:00
common.h Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
COPYING Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01:00
dump.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
emu_nanos6.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
emu_nosv.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
emu_openmp.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
emu_ovni.c Mark as dirty all CPU channels 2021-11-17 12:11:13 +01:00
emu_tampi.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
emu.c Fix memory leaks 2021-11-19 16:48:53 +01:00
emu.h Allocate only the required threads 2021-11-19 16:48:53 +01:00
heap.h Use priority queue for streams and fast channels 2021-10-21 16:53:00 +02:00
ovni2prv.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
ovni.c Split ovni trace funtions to another source file 2021-11-19 16:48:53 +01:00
ovni.h Allocate only the required processes 2021-11-19 16:48:53 +01:00
ovnisync.c Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01: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 Remove const array initialization 2021-11-16 19:20:45 +01:00
pcf.h Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01:00
plot-drift.py Add GPLv3 and MIT licenses 2021-11-03 11:32:17 +01:00
prv.c Set the trace duration in the PRV header 2021-11-03 11:33:16 +01:00
prv.h Set the trace duration in the PRV header 2021-11-03 11:33:16 +01:00
README.txt Add testing instructions to README 2021-11-16 19:22:55 +01:00
test_speed.c Add _emit sufffix in ovni_ev and ovni_ev_jumbo 2021-11-03 11:32:17 +01:00
trace.c Allocate only the required threads 2021-11-19 16:48:53 +01:00
trace.h Fix memory leaks 2021-11-19 16:48:53 +01:00
uthash.h Add nosv task support 2021-07-29 17:46:25 +02:00
utlist.h Add utlist.h for double linked lists 2021-10-21 16:53:00 +02:00

           ovni - Obtuse but Versatile nOS-V 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.10 or newer.
To compile in build/ and install into $prefix use:

  % cmake -DCMAKE_INSTALL_PREFIX=$prefix -S . -B build
  % cd build
  % 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.