Skip to content

Commit

Permalink
Fix get_graph_json test
Browse files Browse the repository at this point in the history
  • Loading branch information
elvin-n committed Aug 29, 2021
1 parent 660a8fb commit fe97c33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def test_cpu_get_graph_json():
loaded_lib = tvm.runtime.load_module(path_lib)
json = loaded_lib["get_graph_json"]()
assert isinstance(json, str) == True
assert json.find("tvmgen_default_fused_nn_softmax1") == 6312
assert json.find("tvmgen_default_fused_nn_softmax1") > -1


@tvm.testing.requires_cuda
Expand Down

0 comments on commit fe97c33

Please sign in to comment.