Everyone should know SIMD
mitchellh.com
Everyone should know SIMD
1–10 of 263 posts
Re: Everyone should know SIMD
#2Re: Everyone should know SIMD
#3I just do gcc -O3 and get SIMD without having to learn it
The best SIMD optimizations likely require changing your data format from AoS to SoA.
Re: Everyone should know SIMD
#4I just do gcc -O3 and get SIMD without having to learn it
Re: Everyone should know SIMD
#5Re: Everyone should know SIMD
#6I just do gcc -O3 and get SIMD without having to learn it
auto-vectorization is not nearly as good as you would hope it to be. The best SIMD optimizations likely require changing your data format from AoS to SoA.
Re: Everyone should know SIMD
#7Re: Everyone should know SIMD
#8Earlier quoted context omitted.
auto-vectorization is not nearly as good as you would hope it to be. The best SIMD optimizations likely require changing your data format from AoS to SoA.
What are AoS and SoA?
Re: Everyone should know SIMD
#9I just do gcc -O3 and get SIMD without having to learn it
auto-vectorization is not nearly as good as you would hope it to be. The best SIMD optimizations likely require changing your data format from AoS to SoA.
Re: Everyone should know SIMD
#10I just do gcc -O3 and get SIMD without having to learn it
auto-vectorization is not nearly as good as you would hope it to be. The best SIMD optimizations likely require changing your data format from AoS to SoA.