-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure
executable file
·106 lines (90 loc) · 2.32 KB
/
configure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Anticonf script by Pacha (2025)
PKG_CONFIG_NAME="capybara"
# Parse command line arguments
for arg in "$@"; do
case "$arg" in
--enable-optimization)
ENABLE_OPTIMIZATION=yes
;;
esac
done
# Find compiler
CXX=$(${R_HOME}/bin/R CMD config CXX)
CXXFLAGS=$(${R_HOME}/bin/R CMD config CXXFLAGS)
CPPFLAGS=$(${R_HOME}/bin/R CMD config CPPFLAGS)
# Set optimization flags if requested
OPTIMIZATION_FLAGS=""
if [ "$ENABLE_OPTIMIZATION" = "yes" ]; then
OPTIMIZATION_FLAGS="-O3 -funroll-loops"
# Check for AVX2 support
if grep -q avx2 /proc/cpuinfo 2>/dev/null; then
OPTIMIZATION_FLAGS="$OPTIMIZATION_FLAGS -mavx2"
fi
echo "Using optimization flags: $OPTIMIZATION_FLAGS"
else
echo "Not using optimization flags"
fi
# Check for OpenMP support
OPENMP_FLAG=""
for flag in -fopenmp -qopenmp -openmp -xopenmp; do
save_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $flag"
echo "int main() { return 0; }" | $CXX -xc++ -E $CXXFLAGS - >/dev/null 2>&1
if [ $? -eq 0 ]; then
OPENMP_FLAG="$flag"
break
fi
CXXFLAGS="$save_CXXFLAGS"
done
if [ -n "$OPENMP_FLAG" ]; then
echo "OpenMP is enabled: $OPENMP_FLAG"
PKG_CXXFLAGS="$OPENMP_FLAG $PKG_CXXFLAGS"
PKG_LIBS="$OPENMP_FLAG $PKG_LIBS"
else
echo "OpenMP is disabled"
fi
# Determine number of cores using OpenMP if available
if [ -n "$CAPYBARA_NCORES" ]; then
num_cores="$CAPYBARA_NCORES"
echo "using environment value: $num_cores"
else
cat > nthreads.cpp << 'EOL'
#include <iostream>
#ifdef _OPENMP
#include <omp.h>
#endif
int main() {
int nthreads;
#ifdef _OPENMP
nthreads = std::max(1, (omp_get_max_threads() + 1) / 2);
#else
nthreads = 1;
#endif
std::cout << nthreads << std::endl;
return 0;
}
EOL
# Need to compile WITH the OpenMP flag
if [ -n "$OPENMP_FLAG" ]; then
$CXX nthreads.cpp -o nthreads $OPENMP_FLAG
else
$CXX nthreads.cpp -o nthreads
fi
# Check if compilation succeeded
if [ $? -eq 0 ] && [ -x ./nthreads ]; then
num_cores=$(./nthreads)
echo "Number of available cores: $num_cores"
else
echo "OpenMP test failed, defaulting to 1"
num_cores=1
fi
# Clean up
rm -f nthreads nthreads.cpp
fi
# Write to Makevars
echo "creating src/Makevars"
sed -e "s|@ncores@|${num_cores}|g" \
-e "s|@OPTIMIZATION_FLAGS@|${OPTIMIZATION_FLAGS}|g" \
src/Makevars.in > src/Makevars
# Success
exit 0