24 lines
454 B
C++
24 lines
454 B
C++
#include "ehs/system/AVX2.h"
|
|
|
|
namespace ehs
|
|
{
|
|
bool AVX2::CompareUnaligned(const UInt_64* a, const UInt_64* b)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool AVX2::CompareUnaligned(const SInt_64* a, const SInt_64* b)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool AVX2::CompareAligned(const UInt_64* a, const UInt_64* b)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool AVX2::CompareAligned(const SInt_64* a, const SInt_64* b)
|
|
{
|
|
return false;
|
|
}
|
|
} |