You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.
When building juice-examples with cargo build --no-default-features --features cuda, I get an error
error[E0433]: failed to resolve.Maybe a missing `externcrate rblas;`?
--> /home/erin/.cargo/git/checkouts/coaster-blas-c027954122df0449/2a8f63c/src/transpose.rs:20:33
|
20 | pub fn to_rblas(&self) -> ::rblas::attribute::Transpose{
| ^^^^^ Maybe a missing `externcrate rblas;`?
// etc ... //
I traced this back to the native feature being disabled when I pass these options - and thus this line being compiled out - but this function still trying to reference ::rblas.
The text was updated successfully, but these errors were encountered:
True, tbh the README needs some additional attention. Both are supposedly easy fixes and I will fix them within the next few days.
Thanks again for reporting!
Well it seems that issue were not as simple as expected, there were a couple of mistakes introduced which prevented FlatBox from even existing since the whole native mod was unused, which just pops up after solving your mentioned issue. They should be all resolved by now.
Please try again with the latest git, I have yet to publish releases.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When building
juice-examples
withcargo build --no-default-features --features cuda
, I get an errorI traced this back to the
native
feature being disabled when I pass these options - and thus this line being compiled out - but this function still trying to reference::rblas
.The text was updated successfully, but these errors were encountered: