We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c53e76 commit dd0d83fCopy full SHA for dd0d83f
src/lib.rs
@@ -159,6 +159,9 @@ pub mod vendor {
159
#[cfg(target_arch = "aarch64")]
160
pub use aarch64::*;
161
162
+ // FIXME: rust does not expose the nvptx and nvptx64 targets yet
163
+ #[cfg(not(any(target_arch = "x86", target_arch = "x86_64",
164
+ target_arch = "arm", target_arch = "aarch64")))]
165
pub use nvptx::*;
166
167
#[cfg(any(
@@ -233,4 +236,7 @@ mod arm;
233
236
234
237
mod aarch64;
235
238
239
+// FIXME: rust does not expose the nvptx and nvptx64 targets yet
240
+#[cfg(not(any(target_arch = "x86", target_arch = "x86_64",
241
242
mod nvptx;
0 commit comments