Tapir-LLVM icon indicating copy to clipboard operation
Tapir-LLVM copied to clipboard

Halide front end

Open ashriram opened this issue 4 years ago • 1 comments

I am playing around with the halide front-end for Tapir. Is there an elegant way to generate the bitcode prior to lowering to a cilk runtime and ABI.

The reason is we are currently taking hijacking Tapir's target-independent bitcode (i.e., reattaches, syncs, detaches) to plug into an FPGA backend.

I see the use of CilkABI as the within https://github.com/wsmoses/Halide/blob/958cd01f3505b11bfb6e641b9c0c9dd229854d56/src/CodeGen_LLVM.cpp#L1042 Is there a NoneTarget or a target that does not lower to a specific runtime?

Thanks

ashriram avatar Nov 15 '19 17:11 ashriram

Depending on which branch of Tapir you're using, you should be able to pass the flags -S -emit-llvm -ftapir=none to clang to get the LLVM IR with Tapir constructs.

Edit: Sorry, I overlooked the fact that you're using the Halide front end. With some versions of Tapir, setting tapirTarget in a PassManagerBuilder to nullptr should cause it to perform no lowering. Give that a try.

neboat avatar Nov 15 '19 18:11 neboat