5 lines
141 B
Bash
5 lines
141 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
cuobjdump=$1; cubin=$2; testfile=$3
|
||
|
|
$cuobjdump -symbols "$cubin" | FileCheck --allow-empty "$testfile"
|