Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add information to README about CUDA support #948

Merged
merged 1 commit into from
May 17, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ As a result, many teams with minimal computer vision knowledge successfully used
- [Network Tables](/~https://github.com/wpilibsuite/allwpilib/tree/master/ntcore/)
- [Robot Operating System (ROS)](http://www.ros.org/)
- HTTP
- CUDA acceleration
- OS Support:
- Windows
- OSX
Expand Down Expand Up @@ -56,6 +57,16 @@ On Windows:

If you don't have an internet connection you can build using the `--offline` flag if you have built GRIP once before.

## CUDA Support
To enable CUDA acceleration, CUDA 10.0 needs to be installed on your computer. CUDA 10.1 may work on
Linux systems, but Windows _must_ use 10.0.

When running or building from source, add the Gradle flag `-Pcuda` to enable CUDA acceleration (eg `./gradlew :ui:run -Pcuda`)

Note that CUDA acceleration is not available for all operations.

Code generation does not support CUDA - it is only used for operations running in GRIP.

## Contributing

See the guide on [setting up build tools](/~https://github.com/WPIRoboticsProjects/GRIP/wiki/Setting-up-build-tools) in the wiki.