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
I'd like to attract your attention to my new library zimt. I am in the process of factoring this code out from my library vspline because I found that the code has a much wider scope than being part of a b-spline library. For now, zimt supports four SIMD back-ends:
Vc
highway
std::simd
'goading'
The idea is to make all these back-ends interoperable and accessible via a common API. Building on top of this common API is code to 'roll out' SIMD pipeline code over arbitrarily strided nD arrays of fundamentals or 'xel' data, like pixels. This code is already quite mature, because it's been in use for years with both vspline and my image/panorama viewer lux.
The common API is very similar to Vc::SimdArray - in fact I had a large-ish body of code relying on Vc::SimdArray and needed a way to re-use the code for a larger set of targets, and that was my initial trigger to develop the code which is now in zimt. Therefore it may help Vc users who want to port code based on Vc::SimdArray to another back-end.
The text was updated successfully, but these errors were encountered:
Dear all!
I'd like to attract your attention to my new library zimt. I am in the process of factoring this code out from my library vspline because I found that the code has a much wider scope than being part of a b-spline library. For now, zimt supports four SIMD back-ends:
The idea is to make all these back-ends interoperable and accessible via a common API. Building on top of this common API is code to 'roll out' SIMD pipeline code over arbitrarily strided nD arrays of fundamentals or 'xel' data, like pixels. This code is already quite mature, because it's been in use for years with both vspline and my image/panorama viewer lux.
The common API is very similar to Vc::SimdArray - in fact I had a large-ish body of code relying on Vc::SimdArray and needed a way to re-use the code for a larger set of targets, and that was my initial trigger to develop the code which is now in zimt. Therefore it may help Vc users who want to port code based on Vc::SimdArray to another back-end.
The text was updated successfully, but these errors were encountered: