Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
drixo
/
nanochatt
like
0
Model card
Files
Files and versions
xet
Community
main
nanochatt
/
venv
/
lib
/
python3.10
/
site-packages
/
numpy
/
distutils
/
checks
/
cpu_xop.c
drixo
Upload folder using huggingface_hub
838f737
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
234 Bytes
#
include
<immintrin.h>
#
ifdef
_MSC_VER
#
include
<ammintrin.h>
#
else
#
include
<x86intrin.h>
#
endif
int
main
(
void
)
{
__m128i a = _mm_comge_epu32(_mm_setzero_si128(), _mm_setzero_si128());
return
_mm_cvtsi128_si32(a);
}