Gradient Augmented Levelset Implementation in CPU & GPU
Overview

About

Implementation of Gradient Augmented Levelset method in CPU and GPU.

Source code

Gradient Augmented Levelset Implementation in CPU & GPU

Installation

Dependencies

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

Additional build options

Dependencies

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

Coverage

Coverage

Primary developers