File: ncu-ui

package info (click to toggle)
nvidia-cuda-toolkit 12.5.0-1
  • links: PTS, VCS
  • area: non-free
  • in suites: experimental
  • size: 13,247,276 kB
  • sloc: ansic: 214,716; cpp: 65,455; javascript: 24,274; python: 22,339; xml: 11,484; makefile: 3,079; sh: 2,288; perl: 356
file content (12 lines) | stat: -rwxr-xr-x 312 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
APPDIR="$(dirname "$(readlink -f -- "$0")")"

ARCH="$(uname -m)"

if   [ "$ARCH" = "x86_64" ]; then
    "$APPDIR/host/linux-desktop-glibc_2_11_3-x64/ncu-ui" "$@"
elif [ "$ARCH" = "aarch64" ]; then
    "$APPDIR/host/linux-desktop-t210-a64/ncu-ui" "$@"
else
    echo "Unsupported Architecture: $ARCH"
fi