Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
camenduru
/
ceres-solver-v1
like
1
Model card
Files
Files and versions
xet
Community
main
ceres-solver-v1
/
colmap
/
build
/
CMakeFiles
/
FindOpenMP
/
OpenMPTryFlag.cpp
camenduru
ceres-solver and colmap
7b7496d
about 3 years ago
raw
Copy download link
history
blame
contribute
delete
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
}