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
Part of the solution seems to be to replace the beginning of the current Display implementation in cubecl-wpgu/src/compiler/wgsl/subgroup.rs for Subgroup with
implDisplayforSubgroup{fn fmt(&self,f:&mut std::fmt::Formatter<'_>) -> std::fmt::Result{matchself{Subgroup::Elect{ out } => {let out = out.fmt_left();writeln!(f,"{out} = subgroupElect();")}// ...
However, I still get the following error
caused by:
In Device::create_shader_module
Shader '' parsing error: no definition in scope for identifier: 'subgroupElect'
┌─ wgsl:28:10
│
28 │ let _2 = subgroupElect();
│ ^^^^^^^^^^^^^ unknown identifier
no definition in scope for identifier: 'subgroupElect'
The text was updated successfully, but these errors were encountered:
Part of the solution seems to be to replace the beginning of the current Display implementation in
cubecl-wpgu/src/compiler/wgsl/subgroup.rs
for Subgroup withHowever, I still get the following error
The text was updated successfully, but these errors were encountered: