Jianqoq

Results 9 comments of Jianqoq

for the line chart, when axis is a string or other type implemented display, line chart won't be generated

for example, if I am doing a computation of N dimension array, the input is shape like [0, 1, 2], [0, 1], etc. I will want to see how the...

The shape I pass to is a string, violin is not straight forward, people can't immediately understand it. line chart is more straight forward.

I am able to compile now, when I debug, the error is actually StageError, and the error says the int type has problem but I can't see the actual msg...

```wgsl @group(0) @binding(0) var a : array; @group(0) @binding(1) var a_strides : array; @group(0) @binding(2) var b : array; @group(0) @binding(3) var b_strides : array; @group(0) @binding(4) var c :...

Maybe the validation should also check the var type for indexing

actually, the i64 indexing is also ok, but just not sure why the validation failed ```c[c_offset + i * c_last_stride] = a[a_offset + i * a_last_stride] + b[b_offset + i...

I am using windows11 and vulkan | DX12 backend, RTX 4090. ```wgsl @group(0) @binding(0) var a : array; @group(0) @binding(1) var a_strides : array; @group(0) @binding(2) var b : array;...

Yup, I worked around it and I found that when I cast some number to u32, then the validation will pass