Replies: 1 comment
-
Odin currently has experiemental SIMD support, though my understanding is there is room for improvement. x := [?]f32{1, 1, 1, 1};
y := transmute(#simd[4]f32) x;
y += 5; // uses SIMD ops
x = transmute([4]f32) y; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What is the level of SIMD support in Odin?
Are there any examples of its use?
Beta Was this translation helpful? Give feedback.
All reactions