Skip to content

Commit

Permalink
os.path --> osp to match the import (#4681)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and tqchen committed Jan 10, 2020
1 parent 336c21b commit 74d5cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/frontend/tests/basics/src/tvm_add.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')])

Expand Down

0 comments on commit 74d5cf4

Please sign in to comment.