|
|
|
|
|
by spankalee
4384 days ago
|
|
It's based on SIMD support in Dart, which has been available for a while now and does supports NEON. https://www.dartlang.org/articles/simd/ The primitives are pretty generic, just a few new vector types based on typed arrays. Operations on those types are supported on CPUs without a SIMD unit, they're just slower, but not any slower than coding with non-SIMD operations. |
|