Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Optimise reductions and dotprod with more vectorisation | Tom Smeding | 2025-03-14 |
| | | | | | | | | | Turns out that if you don't supply -ffast-math, the C compiler will faithfully reproduce your linear reduction order, which is rather disastrous for parallelisation with vector units. This changes the summation order, so numerical results might differ slightly. To wit: the test suite needed adjustment. | ||
* | Implement quot/rem | Tom Smeding | 2025-03-13 |
| | |||
* | Binary ops without normalisation | Tom Smeding | 2025-03-12 |
| | | | | | | | | | Before: > sum(*) Double [1e6] stride 1; -1: OK > 68.9 ms ± 4.7 ms After: > sum(*) Double [1e6] stride 1; -1: OK > 1.44 ms ± 50 μs | ||
* | arith: Unary float ops on strided arrays without normalisation | Tom Smeding | 2025-03-05 |
| | |||
* | arith: Only strided unary int ops | Tom Smeding | 2025-02-16 |
| | | | | | This should have negligible overhead and will save a whole bunch of C code duplication when the FUnops are also converted to strided form. | ||
* | arith: Unary int ops on strided arrays without normalisation | Tom Smeding | 2025-02-16 |
| | |||
* | Add {m,r,s}dot1Inner | Tom Smeding | 2024-06-19 |
| | |||
* | Clean up Foreign.hs | Tom Smeding | 2024-06-18 |
| | |||
* | More sensible argument order to reduce1 C op | Tom Smeding | 2024-06-18 |
| | |||
* | sumAllPrim | Tom Smeding | 2024-06-17 |
| | |||
* | Clean up some redundant catMaybes | Tom Smeding | 2024-06-10 |
| | |||
* | Dot product | Tom Smeding | 2024-06-10 |
| | |||
* | argmin and argmax | Tom Smeding | 2024-06-09 |
| | |||
* | Refactor Mixed (modules, regular function names) | Tom Smeding | 2024-05-30 |