Clean up pass.h (#3312)
authorZhi <5145158+zhiics@users.noreply.github.com>
Tue, 2 Jul 2019 16:14:52 +0000 (09:14 -0700)
committerTianqi Chen <tqchen@users.noreply.github.com>
Tue, 2 Jul 2019 16:14:52 +0000 (09:14 -0700)
commite3d6074a5b204940a7dcb0f50dbf679c7dc072f3
tree1f474452ad20499e0c3598dc7e702e52a1a4c515
parent0af5c21614eb4d4c698e520921d0b158b759774f
Clean up pass.h (#3312)
130 files changed:
docs/api/python/relay/index.rst
include/tvm/relay/analysis.h [moved from include/tvm/relay/pass.h with 71% similarity]
include/tvm/relay/transform.h
nnvm/tests/python/compiler/test_to_relay.py
python/tvm/autotvm/graph_tuner/utils/traverse_graph.py
python/tvm/autotvm/graph_tuner/utils/utils.py
python/tvm/relay/__init__.py
python/tvm/relay/_analysis.py [moved from python/tvm/relay/_ir_pass.py with 89% similarity]
python/tvm/relay/analysis.py [moved from python/tvm/relay/ir_pass.py with 53% similarity]
python/tvm/relay/backend/interpreter.py
python/tvm/relay/expr.pyi
python/tvm/relay/frontend/caffe2.py
python/tvm/relay/frontend/common.py
python/tvm/relay/frontend/coreml.py
python/tvm/relay/frontend/darknet.py
python/tvm/relay/frontend/keras.py
python/tvm/relay/frontend/mxnet.py
python/tvm/relay/frontend/onnx.py
python/tvm/relay/frontend/tensorflow.py
python/tvm/relay/frontend/tflite.py
python/tvm/relay/module.py
python/tvm/relay/quantize/quantize.py
python/tvm/relay/testing/dcgan.py
python/tvm/relay/testing/densenet.py
python/tvm/relay/testing/dqn.py
python/tvm/relay/testing/inception_v3.py
python/tvm/relay/testing/init.py
python/tvm/relay/testing/lstm.py
python/tvm/relay/testing/mlp.py
python/tvm/relay/testing/mobilenet.py
python/tvm/relay/testing/resnet.py
python/tvm/relay/testing/squeezenet.py
python/tvm/relay/testing/vgg.py
python/tvm/relay/transform.py
src/relay/backend/build_module.cc
src/relay/backend/compile_engine.cc
src/relay/backend/compile_engine.h
src/relay/backend/graph_plan_memory.cc
src/relay/backend/interpreter.cc
src/relay/backend/utils.h
src/relay/backend/vm/lambda_lift.cc
src/relay/backend/vm/vm.cc
src/relay/ir/alpha_equal.cc
src/relay/ir/expr_functor.cc
src/relay/ir/hash.cc
src/relay/ir/module.cc
src/relay/pass/alter_op_layout.cc
src/relay/pass/canonicalize_cast.cc
src/relay/pass/canonicalize_ops.cc
src/relay/pass/combine_parallel_conv2d.cc
src/relay/pass/dead_code.cc
src/relay/pass/device_annotation.cc
src/relay/pass/eliminate_common_subexpr.cc
src/relay/pass/eta_expand.cc
src/relay/pass/feature.cc
src/relay/pass/fold_constant.cc
src/relay/pass/fold_scale_axis.cc
src/relay/pass/forward_rewrite.cc
src/relay/pass/fuse_ops.cc
src/relay/pass/gradient.cc
src/relay/pass/kind_check.cc
src/relay/pass/mac_count.cc
src/relay/pass/match_exhaustion.cc
src/relay/pass/partial_eval.cc
src/relay/pass/pass_manager.cc
src/relay/pass/quantize.cc
src/relay/pass/simplify_inference.cc
src/relay/pass/to_a_normal_form.cc
src/relay/pass/to_graph_normal_form.cc
src/relay/pass/type_infer.cc
src/relay/pass/type_solver.cc
src/relay/pass/type_solver.h
src/relay/pass/util.cc
src/relay/pass/well_formed.cc
tests/cpp/relay_build_module_test.cc
tests/cpp/relay_pass_type_infer_test.cc
tests/cpp/relay_transform_sequential.cc
tests/python/frontend/caffe2/model_zoo/squeezenet.py
tests/python/frontend/caffe2/test_graph.py
tests/python/frontend/mxnet/test_graph.py
tests/python/frontend/nnvm_to_relay/test_alter_conv2d.py
tests/python/relay/test_adt.py
tests/python/relay/test_backend_compile_engine.py
tests/python/relay/test_backend_graph_runtime.py
tests/python/relay/test_backend_interpreter.py
tests/python/relay/test_error_reporting.py
tests/python/relay/test_feature.py
tests/python/relay/test_ir_bind.py
tests/python/relay/test_ir_nodes.py
tests/python/relay/test_ir_parser.py
tests/python/relay/test_ir_well_formed.py
tests/python/relay/test_op_grad_level1.py
tests/python/relay/test_op_level1.py
tests/python/relay/test_op_level10.py
tests/python/relay/test_op_level2.py
tests/python/relay/test_op_level3.py
tests/python/relay/test_op_level4.py
tests/python/relay/test_op_level5.py
tests/python/relay/test_pass_alpha_equal.py
tests/python/relay/test_pass_alter_op_layout.py
tests/python/relay/test_pass_annotation.py
tests/python/relay/test_pass_canonicalize_cast.py
tests/python/relay/test_pass_check_kind.py
tests/python/relay/test_pass_combine_parallel_conv2d.py
tests/python/relay/test_pass_dead_code_elimination.py
tests/python/relay/test_pass_eliminate_common_subexpr.py
tests/python/relay/test_pass_eta_expand.py
tests/python/relay/test_pass_fold_constant.py
tests/python/relay/test_pass_fold_scale_axis.py
tests/python/relay/test_pass_fuse_ops.py
tests/python/relay/test_pass_gradient.py
tests/python/relay/test_pass_mac_count.py
tests/python/relay/test_pass_manager.py
tests/python/relay/test_pass_partial_eval.py
tests/python/relay/test_pass_quantize.py
tests/python/relay/test_pass_simplify_inference.py
tests/python/relay/test_pass_to_a_normal_form.py
tests/python/relay/test_pass_to_graph_normal_form.py
tests/python/relay/test_pass_unmatched_cases.py
tests/python/relay/test_pass_vars.py
tests/python/relay/test_type_infer.py
tests/python/relay/test_type_solver.py
tests/python/relay/test_typecall.py
tests/python/unittest/test_graph_tuner_core.py
tests/python/unittest/test_graph_tuner_utils.py
tutorials/frontend/using_external_lib.py
vta/python/vta/top/graphpack.py
vta/scripts/tune_resnet.py
vta/tutorials/autotvm/tune_relay_vta.py
vta/tutorials/frontend/deploy_resnet_on_vta.py