26 lines
1.1 KiB
Bash
26 lines
1.1 KiB
Bash
#!/bin/bash
|
|
set -e
|
|
llvm-as lud_kernel-cuda-nvptx64-nvidia-cuda-sm_50.ll
|
|
llvm-as lud_kernel-host-x86_64-unknown-linux-gnu.ll
|
|
llvm-as common-host-x86_64-unknown-linux-gnu.ll
|
|
llvm-as lud-host-x86_64-unknown-linux-gnu.ll
|
|
../../build/compilation/kernelTranslator lud_kernel-cuda-nvptx64-nvidia-cuda-sm_50.bc kernel.bc
|
|
../../build/compilation/hostTranslator lud_kernel-host-x86_64-unknown-linux-gnu.bc kernel_host.bc
|
|
|
|
llc --relocation-model=pic --filetype=obj kernel.bc
|
|
llc --relocation-model=pic --filetype=obj kernel_host.bc
|
|
llc --relocation-model=pic --filetype=obj lud-host-x86_64-unknown-linux-gnu.bc -o host.o
|
|
llc --relocation-model=pic --filetype=obj common-host-x86_64-unknown-linux-gnu.bc -o common.o
|
|
|
|
g++ -Wall -L../../build/runtime \
|
|
-L../../build/runtime/threadPool \
|
|
-o lud_cuda -fPIC -no-pie host.o kernel_host.o kernel.o common.o -lc -lx86Runtime -lthreadPool -lpthread
|
|
export LD_LIBRARY_PATH=../../build/runtime:../../build/runtime/threadPool:$LD_LIBRARY_PATH
|
|
./lud_cuda -s 256 -v > res.log
|
|
if grep -q "PASS" res.log; then
|
|
echo "Pass"
|
|
else
|
|
echo "Error result"
|
|
exit 1
|
|
fi
|