- Implementation of Gradient Augmented Level Set method in both CPU and GPU (using CUDA).
- 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
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
.
BSD 3-Clause License. Please check the accompanying LICENSE file
- Ryan Krattiger for helping with cmake and guidance on the design of a C++ project.
- Pradeep Garigipati for helping with cmake.
- John Van Gilder for helping with coverage tools.