-
Notifications
You must be signed in to change notification settings - Fork 20
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
JCuda with Gradle #42
Comments
It seems to resolve the (In doubt, I'd try to ping one of the contributors from the linked issue, maybe they can provide further insights...) |
I've solved it with the following: val cudaClassifier = "${getOsString()}-${getArchString()}"
implementation("org.jcuda:jcuda:11.2.0") {
isTransitive = false
}
implementation("org.jcuda:jcuda-natives:11.2.0:$cudaClassifier") In other words - exclude the transitive dependencies and manually include them. |
The I'll leave this issue open for now. If others confirm that the build file might have to be updated, maybe the update can be derived from the discussion here. |
Looks like defining the
classifier
does not work.results in
Could not find jcuda-natives-11.2.0-${jcuda.os}-${jcuda.arch}.jar (org.jcuda:jcuda-natives:11.2.0).
Any ideas?
The text was updated successfully, but these errors were encountered: