Roman

Results 36 comments of Roman

Masked simd types for each simd vector should be available soon

Removing the V0.6 tag from this as this is not as urgent for V0.6 release.

No, Fastor does not have FFT/FFTW support at the moment. We will see if we can provide support through MKL in the near future.

In general, this is a limitation unfortunately. The first example works but it really shouldn't. That is because the right hand side creates a dynamic tensor `L(0, all)` whose size...

Explicit Einstein summation that NumPy has, is not supported in Fastor currently. There is already discussion on how to support this (see #91). One way around this issue for now...

Will work on this ASAP. Thanks for reporting.

I can see that you have implemented a `LinearSolver` in your code which seems like a standard LU solver with partial pivoting. May I ask what are the size of...

That is a bit strange since `SimpleLUPiv` is essentially identical to what you have implemented. If you think this is related to Fastor and can narrow it down to a...

My bad for giving incorrect instructions. Copy pasted the code in a haste. You do need to apply the pivot. Specifically in the forward substitution step: ~~~c++ Tensor y =...

Check your final solution vector to see if you are actually getting the same results