We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
cargo build Compiling collenchyma-nn v0.3.4 (file:///home/ben/src/leaf/collenchyma-nn) src/frameworks/cuda/helper.rs:5:8: 5:59 error: transmute called with differently sized types: u64 (64 bits) to *const libc::c_void (32 bits) [E0512] src/frameworks/cuda/helper.rs:5 Ok(::std::mem::transmute::<u64, *const ::libc::c_void>(
src/frameworks/cuda/helper.rs:16:8: 16:57 error: transmute called with differently sized types: u64 (6
Was wondering why it passed on travis but that uses rustc 1.6.0
32 bit linux. Looks like its because pointer size differences.
The text was updated successfully, but these errors were encountered:
Not sure if I am getting it correctly: You are trying to compile on a 32bit Linux with Rust 1.7?
Sorry, something went wrong.
I first thought its an issue with rust 1.7 but its obvious its a 32 bit pointer (32 bit linux) being transmuted to a u64.
No branches or pull requests
cargo build
Compiling collenchyma-nn v0.3.4 (file:///home/ben/src/leaf/collenchyma-nn)
src/frameworks/cuda/helper.rs:5:8: 5:59 error: transmute called with differently sized types: u64 (64 bits) to *const libc::c_void (32 bits) [E0512]
src/frameworks/cuda/helper.rs:5 Ok(::std::mem::transmute::<u64, *const ::libc::c_void>(
src/frameworks/cuda/helper.rs:16:8: 16:57 error: transmute called with differently sized types: u64 (6
Was wondering why it passed on travis but that uses rustc 1.6.0
32 bit linux. Looks like its because pointer size differences.
The text was updated successfully, but these errors were encountered: