Skip to content

Commit

Permalink
os.path --> osp to match the import (apache#4681)
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored and alexwong committed Feb 26, 2020
1 parent 6bb448e commit 0871f04
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 0871f04

Please sign in to comment.