mirror of
https://github.com/clearlinux/dockerfiles.git
synced 2026-06-16 02:45:47 +00:00
b93034c44a
Signed-off-by: Wang,Long <long1.wang@intel.com>
9 lines
231 B
Bash
Executable File
9 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
if [ -n "$OMP_NUM_THREADS" ]; then
|
|
echo "Warning: Manual set of \"OMP_NUM_THREADS=$OMP_NUM_THREADS\" may be not better than the calculated value by script!"
|
|
else
|
|
source /usr/local/bin/set-num-threads.sh
|
|
fi
|
|
|
|
exec "$@"
|