Commit 74d5cf46 by Christian Clauss Committed by Tianqi Chen

os.path --> osp to match the import (#4681)

parent 336c21b1
......@@ -39,7 +39,7 @@ def main(target, out_dir):
fadd.save(osp.join(out_dir, 'test_add.o'))
if target == 'cuda':
fadd.imported_modules[0].save(os.path.join(out_dir, 'test_add.ptx'))
fadd.imported_modules[0].save(osp.join(out_dir, 'test_add.ptx'))
cc.create_shared(
osp.join(out_dir, 'test_add.so'), [osp.join(out_dir, 'test_add.o')])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment