-
-
Notifications
You must be signed in to change notification settings - Fork 171
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
CUDA build errors with Fedora 27 #1600
Comments
Workaround found here [https://github.com/facebookarchive/caffe2/issues/1194#issuecomment-330668216] is to manually patch the system headers file diff --git a/floatn.h b/floatn.h
index f93a9f8..96db3c3 100644
--- a/floatn.h
+++ b/floatn.h
@@ -34,6 +34,11 @@
# define __HAVE_FLOAT128 0
#endif
+#if CUDART_VERSION
+#undef __HAVE_FLOAT128
+#define __HAVE_FLOAT128 0
+#endif
+
/* Defined to 1 if __HAVE_FLOAT128 is 1 and the type is ABI-distinct
from the default float, double and long double types in this glibc. */
#if __HAVE_FLOAT128 This will have to do for now, the proper fix needs to come from nvidia. We now have beta builds for Fedora 27. |
Fedora 28 hits a new problem: #1800 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The rawhide buildbot is spewing out:
Hopefully a new CUDA SDK will come out and fix this?
The text was updated successfully, but these errors were encountered: