Skip to content

LLNL/dftracer-utils

Repository files navigation

dftracer-utils

A collection of utilities for DFTracer

Documentation Status

Documentation

Full documentation is available at Read the Docs.

To build documentation locally:

pip install .
cd docs
pip install -r requirements.txt
make html

See docs/README.md for detailed documentation building instructions.

Building

Prerequisites

  • CMake 3.5 or higher
  • C++17 compatible compiler
  • zlib development library
  • SQLite3 development library
  • pkg-config

Build

mkdir build && cd build
cmake ..
make

Installation

mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=<LOCATION>
make
make install

Developers Guide

Please see Developers Guide for more information how to test, run coverage, etc.