├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTORS.md ├── LICENSE ├── Makefile ├── README.md ├── benchmarks ├── benchmarks.md ├── frameworks │ ├── CMakeLists.txt │ ├── tensorrt │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ ├── accanalyzer.h │ │ │ ├── engine.h │ │ │ ├── input.h │ │ │ ├── output.h │ │ │ ├── rtclient.h │ │ │ ├── tensor.h │ │ │ └── utils.h │ │ └── src │ │ │ ├── accanalyzer.cpp │ │ │ ├── engine.cpp │ │ │ ├── input.cpp │ │ │ ├── main.cpp │ │ │ ├── output.cpp │ │ │ ├── rtclient.cpp │ │ │ └── tensor.cpp │ ├── tfserving │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ ├── accanalyzer.h │ │ │ ├── input.h │ │ │ ├── output.h │ │ │ └── tfclient.h │ │ ├── protos │ │ │ ├── tensorflow │ │ │ │ └── core │ │ │ │ │ ├── example │ │ │ │ │ ├── example.proto │ │ │ │ │ └── feature.proto │ │ │ │ │ ├── framework │ │ │ │ │ ├── allocation_description.proto │ │ │ │ │ ├── attr_value.proto │ │ │ │ │ ├── cost_graph.proto │ │ │ │ │ ├── full_type.proto │ │ │ │ │ ├── function.proto │ │ │ │ │ ├── graph.proto │ │ │ │ │ ├── node_def.proto │ │ │ │ │ ├── op_def.proto │ │ │ │ │ ├── resource_handle.proto │ │ │ │ │ ├── step_stats.proto │ │ │ │ │ ├── tensor.proto │ │ │ │ │ ├── tensor_description.proto │ │ │ │ │ ├── tensor_shape.proto │ │ │ │ │ ├── types.proto │ │ │ │ │ ├── variable.proto │ │ │ │ │ └── versions.proto │ │ │ │ │ └── protobuf │ │ │ │ │ ├── cluster.proto │ │ │ │ │ ├── config.proto │ │ │ │ │ ├── coordination_config.proto │ │ │ │ │ ├── debug.proto │ │ │ │ │ ├── error_codes.proto │ │ │ │ │ ├── meta_graph.proto │ │ │ │ │ ├── named_tensor.proto │ │ │ │ │ ├── rewriter_config.proto │ │ │ │ │ ├── saved_object_graph.proto │ │ │ │ │ ├── saver.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── trackable_object_graph.proto │ │ │ │ │ └── verifier_config.proto │ │ │ └── tensorflow_serving │ │ │ │ ├── apis │ │ │ │ ├── classification.proto │ │ │ │ ├── get_model_metadata.proto │ │ │ │ ├── get_model_status.proto │ │ │ │ ├── inference.proto │ │ │ │ ├── input.proto │ │ │ │ ├── logging.proto │ │ │ │ ├── model.proto │ │ │ │ ├── model_management.proto │ │ │ │ ├── model_service.proto │ │ │ │ ├── predict.proto │ │ │ │ ├── prediction_log.proto │ │ │ │ ├── prediction_service.proto │ │ │ │ ├── regression.proto │ │ │ │ ├── session_service.proto │ │ │ │ └── status.proto │ │ │ │ └── config │ │ │ │ ├── file_system_storage_path_source.proto │ │ │ │ ├── log_collector_config.proto │ │ │ │ ├── logging_config.proto │ │ │ │ ├── model_server_config.proto │ │ │ │ ├── monitoring_config.proto │ │ │ │ ├── platform_config.proto │ │ │ │ └── ssl_config.proto │ │ └── src │ │ │ ├── accanalyzer.cpp │ │ │ ├── input.cpp │ │ │ ├── main.cpp │ │ │ ├── output.cpp │ │ │ └── tfclient.cpp │ └── triton │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ ├── accanalyzer.h │ │ ├── input.h │ │ ├── output.h │ │ ├── triton_utils.h │ │ └── tritonclient.h │ │ └── src │ │ ├── accanalyzer.cpp │ │ ├── input.cpp │ │ ├── main.cpp │ │ ├── output.cpp │ │ └── tritonclient.cpp ├── inputs │ └── imagenet │ │ ├── cassette.png │ │ ├── gorilla.png │ │ └── pizza.png ├── models │ ├── densenet201-imagenet │ │ ├── 1 │ │ │ ├── densenet201-imagenet.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ ├── distilbert │ │ ├── 1 │ │ │ ├── distilbert.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ ├── inceptionv3-imagenet │ │ ├── 1 │ │ │ ├── inceptionv3-imagenet.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ ├── mobilenetv1-imagenet │ │ ├── 1 │ │ │ ├── mobilenetv1-imagenet.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ ├── models.config │ ├── resnet152-imagenet │ │ ├── 1 │ │ │ ├── resnet152-imagenet.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ ├── resnet50-imagenet │ │ ├── 1 │ │ │ ├── resnet50-imagenet.onnx │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ │ ├── variables.data-00000-of-00001 │ │ │ │ └── variables.index │ │ ├── config.pbtxt │ │ └── model.json │ └── vgg19-imagenet │ │ ├── 1 │ │ ├── saved_model.pb │ │ ├── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ │ └── vgg19-imagenet.onnx │ │ ├── config.pbtxt │ │ └── model.json ├── results │ ├── results.md │ ├── results.xlsx │ ├── tfs.A.json │ ├── tfs.B.json │ ├── tfs.C.json │ ├── tfs.D.json │ ├── tfs.E.json │ ├── tfs.REAL.json │ ├── triton.A.json │ ├── triton.B.json │ ├── triton.C.json │ ├── triton.D.json │ ├── triton.E.json │ ├── triton.REAL.json │ ├── trt.A.json │ ├── trt.B.json │ ├── trt.C.json │ ├── trt.D.json │ ├── trt.E.json │ └── trt.REAL.json └── workloads │ ├── A.json │ ├── B.json │ ├── C.json │ ├── D.json │ ├── E.json │ ├── REAL.json │ └── workloads.md ├── include ├── analyzer.h ├── benchmark.h ├── client.h ├── disb.h ├── disb_utils.h └── load.h ├── run.sh ├── samples ├── CMakeLists.txt ├── hellodisb │ ├── CMakeLists.txt │ ├── config.json │ └── hellodisb.cpp └── reef │ ├── CMakeLists.txt │ ├── README.md │ ├── config │ ├── A.json │ ├── B.json │ ├── C.json │ ├── D.json │ └── E.json │ ├── main.cpp │ ├── reefclient.cpp │ └── reefclient.h ├── src ├── analyzer.cpp ├── benchmark.cpp ├── client.cpp ├── load.cpp └── utils.cpp └── tools ├── convertCSV.py └── onnx_to_tensorrt.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/benchmarks.md -------------------------------------------------------------------------------- /benchmarks/frameworks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/README.md -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/accanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/accanalyzer.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/engine.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/input.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/output.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/rtclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/rtclient.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/tensor.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/include/utils.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/accanalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/accanalyzer.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/engine.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/input.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/main.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/output.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/rtclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/rtclient.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tensorrt/src/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tensorrt/src/tensor.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/.gitignore: -------------------------------------------------------------------------------- 1 | rpc -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/README.md -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/include/accanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/include/accanalyzer.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/include/input.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/include/output.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/include/tfclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/include/tfclient.h -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/example/example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/example/example.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/example/feature.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/example/feature.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/allocation_description.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/allocation_description.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/attr_value.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/attr_value.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/cost_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/cost_graph.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/full_type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/full_type.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/function.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/function.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/graph.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/node_def.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/node_def.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/op_def.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/op_def.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/resource_handle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/resource_handle.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/step_stats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/step_stats.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor_description.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor_description.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor_shape.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/tensor_shape.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/types.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/variable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/variable.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/versions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/framework/versions.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/cluster.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/cluster.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/coordination_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/coordination_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/debug.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/debug.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/error_codes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/error_codes.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/meta_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/meta_graph.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/named_tensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/named_tensor.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/rewriter_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/rewriter_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/saved_object_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/saved_object_graph.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/saver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/saver.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/struct.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/trackable_object_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/trackable_object_graph.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/verifier_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow/core/protobuf/verifier_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/classification.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/classification.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/get_model_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/get_model_metadata.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/get_model_status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/get_model_status.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/inference.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/inference.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/input.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/input.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/logging.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/logging.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model_management.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model_management.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/model_service.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/predict.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/predict.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/prediction_log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/prediction_log.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/prediction_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/prediction_service.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/regression.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/regression.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/session_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/session_service.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/apis/status.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/file_system_storage_path_source.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/file_system_storage_path_source.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/log_collector_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/log_collector_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/logging_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/logging_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/model_server_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/model_server_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/monitoring_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/monitoring_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/platform_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/platform_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/ssl_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/protos/tensorflow_serving/config/ssl_config.proto -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/src/accanalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/src/accanalyzer.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/src/input.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/src/main.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/src/output.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/tfserving/src/tfclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/tfserving/src/tfclient.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/CMakeLists.txt -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/README.md -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/include/accanalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/include/accanalyzer.h -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/include/input.h -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/include/output.h -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/include/triton_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/include/triton_utils.h -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/include/tritonclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/include/tritonclient.h -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/src/accanalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/src/accanalyzer.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/src/input.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/src/main.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/src/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/src/output.cpp -------------------------------------------------------------------------------- /benchmarks/frameworks/triton/src/tritonclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/frameworks/triton/src/tritonclient.cpp -------------------------------------------------------------------------------- /benchmarks/inputs/imagenet/cassette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/inputs/imagenet/cassette.png -------------------------------------------------------------------------------- /benchmarks/inputs/imagenet/gorilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/inputs/imagenet/gorilla.png -------------------------------------------------------------------------------- /benchmarks/inputs/imagenet/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/inputs/imagenet/pizza.png -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/1/densenet201-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/1/densenet201-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/densenet201-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/densenet201-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/models/distilbert/1/distilbert.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/1/distilbert.onnx -------------------------------------------------------------------------------- /benchmarks/models/distilbert/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/distilbert/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/distilbert/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/distilbert/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/distilbert/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/distilbert/model.json -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/1/inceptionv3-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/1/inceptionv3-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/inceptionv3-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/inceptionv3-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/1/mobilenetv1-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/1/mobilenetv1-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/mobilenetv1-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/mobilenetv1-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/models/models.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/models.config -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/1/resnet152-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/1/resnet152-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/resnet152-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet152-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/1/resnet50-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/1/resnet50-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/resnet50-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/resnet50-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/1/saved_model.pb -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/1/variables/variables.index -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/1/vgg19-imagenet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/1/vgg19-imagenet.onnx -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/config.pbtxt -------------------------------------------------------------------------------- /benchmarks/models/vgg19-imagenet/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/models/vgg19-imagenet/model.json -------------------------------------------------------------------------------- /benchmarks/results/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/results.md -------------------------------------------------------------------------------- /benchmarks/results/results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/results.xlsx -------------------------------------------------------------------------------- /benchmarks/results/tfs.A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.A.json -------------------------------------------------------------------------------- /benchmarks/results/tfs.B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.B.json -------------------------------------------------------------------------------- /benchmarks/results/tfs.C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.C.json -------------------------------------------------------------------------------- /benchmarks/results/tfs.D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.D.json -------------------------------------------------------------------------------- /benchmarks/results/tfs.E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.E.json -------------------------------------------------------------------------------- /benchmarks/results/tfs.REAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/tfs.REAL.json -------------------------------------------------------------------------------- /benchmarks/results/triton.A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.A.json -------------------------------------------------------------------------------- /benchmarks/results/triton.B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.B.json -------------------------------------------------------------------------------- /benchmarks/results/triton.C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.C.json -------------------------------------------------------------------------------- /benchmarks/results/triton.D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.D.json -------------------------------------------------------------------------------- /benchmarks/results/triton.E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.E.json -------------------------------------------------------------------------------- /benchmarks/results/triton.REAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/triton.REAL.json -------------------------------------------------------------------------------- /benchmarks/results/trt.A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.A.json -------------------------------------------------------------------------------- /benchmarks/results/trt.B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.B.json -------------------------------------------------------------------------------- /benchmarks/results/trt.C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.C.json -------------------------------------------------------------------------------- /benchmarks/results/trt.D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.D.json -------------------------------------------------------------------------------- /benchmarks/results/trt.E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.E.json -------------------------------------------------------------------------------- /benchmarks/results/trt.REAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/results/trt.REAL.json -------------------------------------------------------------------------------- /benchmarks/workloads/A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/A.json -------------------------------------------------------------------------------- /benchmarks/workloads/B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/B.json -------------------------------------------------------------------------------- /benchmarks/workloads/C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/C.json -------------------------------------------------------------------------------- /benchmarks/workloads/D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/D.json -------------------------------------------------------------------------------- /benchmarks/workloads/E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/E.json -------------------------------------------------------------------------------- /benchmarks/workloads/REAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/REAL.json -------------------------------------------------------------------------------- /benchmarks/workloads/workloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/benchmarks/workloads/workloads.md -------------------------------------------------------------------------------- /include/analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/analyzer.h -------------------------------------------------------------------------------- /include/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/benchmark.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/client.h -------------------------------------------------------------------------------- /include/disb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/disb.h -------------------------------------------------------------------------------- /include/disb_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/disb_utils.h -------------------------------------------------------------------------------- /include/load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/include/load.h -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/run.sh -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/hellodisb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/hellodisb/CMakeLists.txt -------------------------------------------------------------------------------- /samples/hellodisb/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/hellodisb/config.json -------------------------------------------------------------------------------- /samples/hellodisb/hellodisb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/hellodisb/hellodisb.cpp -------------------------------------------------------------------------------- /samples/reef/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/CMakeLists.txt -------------------------------------------------------------------------------- /samples/reef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/README.md -------------------------------------------------------------------------------- /samples/reef/config/A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/config/A.json -------------------------------------------------------------------------------- /samples/reef/config/B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/config/B.json -------------------------------------------------------------------------------- /samples/reef/config/C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/config/C.json -------------------------------------------------------------------------------- /samples/reef/config/D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/config/D.json -------------------------------------------------------------------------------- /samples/reef/config/E.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/config/E.json -------------------------------------------------------------------------------- /samples/reef/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/main.cpp -------------------------------------------------------------------------------- /samples/reef/reefclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/reefclient.cpp -------------------------------------------------------------------------------- /samples/reef/reefclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/samples/reef/reefclient.h -------------------------------------------------------------------------------- /src/analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/src/analyzer.cpp -------------------------------------------------------------------------------- /src/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/src/benchmark.cpp -------------------------------------------------------------------------------- /src/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/src/client.cpp -------------------------------------------------------------------------------- /src/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/src/load.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /tools/convertCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/tools/convertCSV.py -------------------------------------------------------------------------------- /tools/onnx_to_tensorrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SJTU-IPADS/disb/HEAD/tools/onnx_to_tensorrt.sh --------------------------------------------------------------------------------