diff options
-rwxr-xr-x | runc | 11 | ||||
-rwxr-xr-x | runcuda | 9 |
2 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +g++ $1 -o temp + +chmod +x temp + +./temp + +rm temp @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +nvcc -allow-unsupported-compiler $1 -o temp + +chmod +x temp # if it isn't already executable + +./temp |