We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7bb7dc commit bdac43dCopy full SHA for bdac43d
.github/scripts/get_system_info.sh
@@ -7,7 +7,7 @@
7
8
function check_L0_version {
9
if command -v dpkg &> /dev/null; then
10
- dpkg -l | grep level-zero && return
+ dpkg -l | grep -iE "level-zero|libze|Compute Runtime|Level Zero" && return
11
fi
12
13
if command -v rpm &> /dev/null; then
@@ -34,7 +34,7 @@ function system_info {
34
numactl -H
35
36
echo "**********VGA info**********"
37
- lspci | grep -i VGA
+ lspci | grep -iE "vga|display|gpu"
38
39
echo "**********CUDA Version**********"
40
if command -v nvidia-smi &> /dev/null; then
0 commit comments