打开微信,使用扫一扫进入页面后,点击右上角菜单,
点击“发送给朋友”或“分享到朋友圈”完成分享
设备:MLU270
系统:UBUNTU16.04
您好,请问如何将MLU源代码编译为LLVM IR,使用CNCC工具还是原生CLANG工具,具体的命令选项是什么?十分感谢!
MLU源代码指的是用BANG C代码编写的程序,下面是样例
#include #include __mlu_entry__ void myadd_kernel0() { __bang_printf("%d %d\n", taskIdX, taskIdY); } int foo2() { cnrtInit(0); cnrtDev_t dev; cnrtGetDeviceHandle(&dev, 0); cnrtSetCurrentDevice(dev); cnrtDim3_t dim1 = {16, 2, 1}; cnrtFunctionType_t ktype = CNRT_FUNC_TYPE_UNION4; cnrtQueue_t queue; CNRT_CHECK(cnrtCreateQueue(&queue)); myadd_kernel0<<>>(); cnrtSyncQueue(queue); cnrtDestroy(); return 0; } int main(void) { return foo2(); }
热门帖子
精华帖子