Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の2つの操作を行う必要があります。
float x[4]; float y[16]; // 1-to-4 broadcast for ( int i = 0; i < 16; ++i ) y[i] = x[i / 4]; // 4-to-1 reduce-add for ( int i = 0; i < 16; ++i ) x[i / 4] += y[i];
効率的な AVX-512 の実装とは?