Skip to content

Commit

Permalink
Add CUDA support
Browse files Browse the repository at this point in the history
Currently requires custom CUDA bindings from javaccp-presets (see bytedeco/javacpp-presets#416)
Trying to use CUDA-accelerated operations without an nvidia GPU and running nvidia drivers will probably crash the app
  • Loading branch information
SamCarlberg committed Apr 8, 2019
1 parent 0868182 commit bb7afe1
Show file tree
Hide file tree
Showing 48 changed files with 989 additions and 516 deletions.
4 changes: 2 additions & 2 deletions core/core.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies {
annotationProcessor(project(":annotation"))
api(group = "com.google.code.findbugs", name = "jsr305", version = "3.0.1")
api(group = "org.bytedeco", name = "javacv", version = "1.1")
api(group = "org.bytedeco.javacpp-presets", name = "opencv", version = "3.0.0-1.1")
api(group = "org.bytedeco.javacpp-presets", name = "opencv", version = "3.0.0-1.1", classifier = os)
api(group = "org.bytedeco.javacpp-presets", name = "opencv", version = "3.4.3-1.4.3")
api(group = "org.bytedeco.javacpp-presets", name = "opencv", version = "3.4.3-1.4.3", classifier = "$os-gpu")
api(group = "org.bytedeco.javacpp-presets", name = "videoinput", version = "0.200-1.1", classifier = os)
api(group = "org.bytedeco.javacpp-presets", name = "ffmpeg", version = "0.200-1.1", classifier = os)
api(group = "org.python", name = "jython", version = "2.7.0")
Expand Down
49 changes: 0 additions & 49 deletions core/src/main/java/edu/wpi/grip/core/Description.java

This file was deleted.

Loading

0 comments on commit bb7afe1

Please sign in to comment.