Skip to content

Commit

Permalink
* test case
Browse files Browse the repository at this point in the history
  • Loading branch information
srkreddy1238 committed Jan 14, 2019
1 parent 4497b31 commit a0cbd5f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/python/relay/test_backend_compile_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ def test_compile_placeholder_bypass():
x = relay.var("x", shape=(2, 3))
y = relay.var("y", shape=(2, 3))
z = relay.var("z", shape=(2, 3))
result = relay.Tuple([relay.op.concatenate([y, z], axis=0)])
#result = relay.Tuple([x, relay.op.concatenate([y, z], axis=0)])
result = relay.Tuple([x, relay.op.concatenate([y, z], axis=0)])
func = relay.Function(relay.ir_pass.free_vars(result), result)
with relay.build_config(opt_level=3):
with relay.build_config(opt_level=0):
graph, lib, params = relay.build(func, 'llvm')

if __name__ == "__main__":
Expand Down

0 comments on commit a0cbd5f

Please sign in to comment.