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
error[E0384]: cannot assign twice to immutable variable `builder`
--> candle-flash-attn/build.rs:93:13
|
76 | let builder = bindgen_cuda::Builder::default()
| ------- first assignment to `builder`
...
93 | builder = builder.arg("-D_USE_MATH_DEFINES");
| ^^^^^^^ cannot assign twice to immutable variable
|
help: consider making this binding mutable
|
76 | let mut builder = bindgen_cuda::Builder::default()
| +++
For more information about this error, try `rustc --explain E0384`.
error: could not compile `candle-flash-attn` (build script) due to 1 previous error
The text was updated successfully, but these errors were encountered:
this was working fine until recent commit
gives error
The text was updated successfully, but these errors were encountered: