Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/get_system_info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

function check_L0_version {
if command -v dpkg &> /dev/null; then
dpkg -l | grep level-zero && return
dpkg -l | grep -iE "level-zero|libze|Compute Runtime|Level Zero" && return
fi

if command -v rpm &> /dev/null; then
Expand All @@ -34,7 +34,7 @@ function system_info {
numactl -H

echo "**********VGA info**********"
lspci | grep -i VGA
lspci | grep -iE "vga|display|gpu"

echo "**********CUDA Version**********"
if command -v nvidia-smi &> /dev/null; then
Expand Down
Loading