Re: [Mesa-dev] [PATCH v2 1/2] gallium: Enable ASIMD/NEON on aarch64.

2019-01-24 Thread Eric Anholt
Matt Turner writes: > NEON (now called ASIMD) is available on all aarch64 CPUs. Our code was > missing an aarch64 path, leading to util_cpu_caps.has_neon always being > false on aarch64. > --- > Here's the simpler patch to just always enable NEON on aarch64. It suits > my purposes, but I can

[Mesa-dev] [PATCH v2 1/2] gallium: Enable ASIMD/NEON on aarch64.

2019-01-23 Thread Matt Turner
NEON (now called ASIMD) is available on all aarch64 CPUs. Our code was missing an aarch64 path, leading to util_cpu_caps.has_neon always being false on aarch64. --- Here's the simpler patch to just always enable NEON on aarch64. It suits my purposes, but I can imagine that you may prefer the