UNCLASSIFIED
Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Ironbank Containers
O
Opensource
triton-inference-server
server
Commits
f40d6d55
Commit
f40d6d55
authored
Apr 21, 2021
by
Andrew Simonetta
Browse files
Adding scripts folder with entrypoint.sh
parent
71033a73
Pipeline
#228727
passed with stages
in 62 minutes and 49 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
95 additions
and
1 deletion
+95
-1
Dockerfile
Dockerfile
+1
-1
scripts/nvidia_entrypoint.sh
scripts/nvidia_entrypoint.sh
+94
-0
No files found.
Dockerfile
View file @
f40d6d55
...
...
@@ -16,7 +16,7 @@ RUN dnf -y upgrade && dnf -y install pkg-config libgomp libpng python38 && dnf c
#ENV
ENV
PATH /usr/local/nvidia/bin:/usr/local/cuda/bin:/opt/tritonserver/bin:${PATH}
ENV
LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:/opt/tritonserver/lib
:/opt/tritonserver/lib
ENV
LD_LIBRARY_PATH /usr/local/nvidia/lib:/usr/local/nvidia/lib64:/opt/tritonserver/lib
#Link
RUN
ln
-s
cuda-11.2 /usr/local/cuda
...
...
scripts/nvidia_entrypoint.sh
0 → 100755
View file @
f40d6d55
#!/bin/bash
# Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of NVIDIA CORPORATION nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set
-e
cat
<<
EOF
=============================
== Triton Inference Server ==
=============================
NVIDIA Release
${
NVIDIA_TRITON_SERVER_VERSION
}
(build
${
NVIDIA_BUILD_ID
}
)
Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved.
Various files include modifications (c) NVIDIA CORPORATION. All rights reserved.
NVIDIA modifications are covered by the license terms that apply to the underlying
project or file.
EOF
if
[[
"
$(
find
-L
/usr
-name
libcuda.so.1 |
grep
-v
"compat"
)
"
==
" "
||
"
$(
ls
/dev/nvidiactl 2>/dev/null
)
"
==
" "
]]
;
then
echo
echo
"WARNING: The NVIDIA Driver was not detected. GPU functionality will not be available."
echo
" Use 'nvidia-docker run' to start this container; see"
echo
" https://github.com/NVIDIA/nvidia-docker/wiki/nvidia-docker ."
ln
-s
`
find /
-name
libnvidia-ml.so
-print
-quit
`
/opt/tritonserver/lib/libnvidia-ml.so.1
export
LD_LIBRARY_PATH
=
/usr/local/cuda-11.2/compat:
${
LD_LIBRARY_PATH
}
export
TRITON_SERVER_CPU_ONLY
=
1
else
(
/usr/local/bin/checkSMVER.sh
)
DRIVER_VERSION
=
$(
sed
-n
's/^NVRM.*Kernel Module *\([0-9.]*\).*$/\1/p'
/proc/driver/nvidia/version 2>/dev/null
||
true
)
if
[[
!
"
$DRIVER_VERSION
"
=
~ ^[0-9]
*
.[0-9]
*
(
.[0-9]
*
)
?
$
]]
;
then
echo
"Failed to detect NVIDIA driver version."
elif
[[
"
${
DRIVER_VERSION
%%.*
}
"
-lt
"
${
CUDA_DRIVER_VERSION
%%.*
}
"
]]
;
then
if
[[
"
${
_CUDA_COMPAT_STATUS
}
"
==
"CUDA Driver OK"
]]
;
then
echo
echo
"NOTE: Legacy NVIDIA Driver detected. Compatibility mode ENABLED."
else
echo
echo
"ERROR: This container was built for NVIDIA Driver Release
${
CUDA_DRIVER_VERSION
%.*
}
or later, but"
echo
" version
${
DRIVER_VERSION
}
was detected and compatibility mode is UNAVAILABLE."
echo
echo
" [[
${
_CUDA_COMPAT_STATUS
}
]]"
sleep
2
fi
fi
fi
if
!
cat
/proc/cpuinfo |
grep
flags |
sort
-u
|
grep
avx
>
& /dev/null
;
then
echo
echo
"ERROR: This container was built for CPUs supporting at least the AVX instruction set, but"
echo
" the CPU detected was
$(
cat
/proc/cpuinfo |grep
"model name"
|
sed
's/^.*: //'
|
sort
-u
)
, which does not report"
echo
" support for AVX. An Illegal Instrution exception at runtime is likely to result."
echo
" See https://en.wikipedia.org/wiki/Advanced_Vector_Extensions#CPUs_with_AVX ."
sleep
2
fi
if
[[
"
$(
df
-k
/dev/shm |grep ^shm |awk
'{print $2}'
)
"
==
"65536 "
]]
;
then
echo
echo
"NOTE: The SHMEM allocation limit is set to the default of 64MB. This may be"
echo
" insufficient for the inference server. NVIDIA recommends the use of the following flags:"
echo
" nvidia-docker run --shm-size=1g --ulimit memlock=-1 --ulimit stack=67108864 ..."
fi
echo
if
[[
$#
-eq
0
]]
;
then
exec
"/bin/bash"
else
exec
"
$@
"
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment