Click here to Skip to main content
15,892,575 members
Everything / AVX

AVX

AVX

Great Reads

by tugrulGtx
A small tool for writing various algorithms as if they were CUDA/OpenCL kernels
by Zuoliu Ding
A discussion on optimization using SIMD instructions including MMX, SSE, and AVX in x86 Assembly Language Programming

Latest Articles

by tugrulGtx
A small tool for writing various algorithms as if they were CUDA/OpenCL kernels
by Zuoliu Ding
A discussion on optimization using SIMD instructions including MMX, SSE, and AVX in x86 Assembly Language Programming

All Articles

Sort by Score

AVX 

25 Apr 2022 by tugrulGtx
A small tool for writing various algorithms as if they were CUDA/OpenCL kernels
20 Sep 2014 by Chris Losinger
i have an _m256 with 8 floats in it:i want to add pairs of values : (0+4, 1+5, 2+6, 3+7)__m256 i;... i gets some values... and then...i = { i.m256_f32[0] + i.m256_f32[4], i.m256_f32[1] + i.m256_f32[5], i.m256_f32[2] + i.m256_f32[6], i.m256_f32[3] +...
20 Sep 2014 by Chris Losinger
nevermind...__m256 j = _mm256_permute2f128_ps(i, i, (1
21 Jul 2016 by Member 12645048
I am trying to multiply scalars then vectors later on using Microsoft visual studio and in C++.Essentially I copied a programme from here Using AVX instructions in matrix multiplication | Thinking and Computing[^]I wanted to have a working model to base everything off and understand AVX...
21 Jul 2016 by KarstenK
That is the command line command to compile your source. REad here some documentation.In Visual Studio you have some project settings in a dialog windows which manages such stuff. In this blog you should find some useful information.
26 Mar 2021 by Zuoliu Ding
A discussion on optimization using SIMD instructions including MMX, SSE, and AVX in x86 Assembly Language Programming