7 lines
79 B
Bash
Executable File
7 lines
79 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# exit when any command fails
|
|
set -e
|
|
|
|
make -C benchmarks/opencl run
|