masahi commented on a change in pull request #10108: URL: https://github.com/apache/tvm/pull/10108#discussion_r795245488
########## File path: apps/topi_recipe/gemm/cuda_gemm_square.py ########## @@ -27,27 +27,6 @@ USE_MANUAL_CODE = False [email protected]_func("tvm_callback_cuda_compile", override=True) -def tvm_callback_cuda_compile(code): - ptx = nvcc.compile_cuda(code, target_format="ptx") - return ptx - - -def write_code(code, fname): - with open(fname, "w") as f: - f.write(code) - - [email protected]_func -def tvm_callback_cuda_postproc(code): - if not os.path.exists("perf"): - os.mkdir("perf") - write_code(code, "perf/%s_generated.cu" % TASK) - if USE_MANUAL_CODE: - code = open("perf/%s_manual.cu" % TASK).read() - return code - - Review comment: This code is stale and blocks this script from running. We don't need this anymore, so better just to remove it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
