Skip to content

acrlakshman/gradient-augmented-levelset-cuda

Repository files navigation

Gradient Augmented Level Set Method - CPU & CUDA

Build Status Coverage Status

  • Implementation of Gradient Augmented Level Set method in both CPU and GPU (using CUDA).

Build instructions

Dependencies

  • CMake
  • Compiler that supports C++14
git clone https://github.com/acrlakshman/gradient-augmented-levelset-cuda --recursive
cd gradient-augmented-levelset-cuda
mkdir -p build && cd build
cmake .. && make -j 4

Additional build options

Dependencies

cmake .. -DBUILD_DOCUMENTATION=ON -DBUILD_COVERAGE=ON
make -j 4
./tests/gals_unit_tests
lcov --directory . --base-directory ../src --capture --no-external --output-file coverage.info
genhtml coverage.info --output-directory ./docs/html/coverage
  • Documentation can be found at ./docs/html/index.html.

Documentation

License

BSD 3-Clause License. Please check the accompanying LICENSE file

Acknowledgements