cpplab/include/cpu/avx2.hpp
2020-07-17 08:46:46 +01:00

11 lines
178 B
C++

#pragma once
namespace cpu
{
class avx2
{
public:
static int const AVX2_INT_SIZE = 16;
static void avx_sum(int *a, int *b);
static void printAVX2Num(int *num);
};
};