Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mat17892
/
iris
like
0
Runtime error
App
Files
Files
Community
038ef00
iris
/
llama.cpp
/
build
/
CMakeFiles
/
FindOpenMP
/
OpenMPTryFlag.cpp
Mat17892
llamacpp
b664585
verified
27 days ago
raw
Copy download link
history
blame
Safe
172 Bytes
#
include
<omp.h>
int
main
(
void
)
{
#
ifdef
_OPENMP
omp_get_max_threads
();
return
0
;
#
elif
defined(__HIP_DEVICE_COMPILE__)
return
0
;
#
else
breaks_on_purpose
#
endif
}