Y
Hacker News
new
|
ask
|
show
|
jobs
by
buybackoff
218 days ago
Unsafety means different things. In C#, SIMD is possible via `ref`s, which maintains GC safety (no GC holes), but removes bounds safety (array length check). The API is called appropriately Vector.Load
Unsafe