Make ONNX models compatible with ONNXruntime's TensorrtExecutionProvider
Browse files- Use FP16 ONNX Model with Batch Size 4 for DEMO with TRT EP
- Perform shape inference on all ONNX models
- Removed int8 models which is not recommended due to performance drop
- Add ONNX models with fixed input batch size 1,2,4
- Enable TensorRT Execution Provider (TRT EP)
- demo.sh +1 -1
- demo_batch.sh +2 -0
- fix_input_batch_size.py +31 -0
- fix_input_batch_size_all.sh +38 -0
- rtmo-l.fp16.onnx +2 -2
- rtmo-l.int8.onnx → rtmo-l.fp16_batch1.onnx +2 -2
- rtmo-m.int8.onnx → rtmo-l.fp16_batch2.onnx +2 -2
- rtmo-s.int8.onnx → rtmo-l.fp16_batch4.onnx +2 -2
- rtmo-l.onnx +2 -2
- rtmo-l_batch1.onnx +3 -0
- rtmo-l_batch2.onnx +3 -0
- rtmo-l_batch4.onnx +3 -0
- rtmo-m.fp16.onnx +2 -2
- rtmo-t.int8.onnx → rtmo-m.fp16_batch1.onnx +2 -2
- rtmo-m.fp16_batch2.onnx +3 -0
- rtmo-m.fp16_batch4.onnx +3 -0
- rtmo-m.onnx +2 -2
- rtmo-m_batch1.onnx +3 -0
- rtmo-m_batch2.onnx +3 -0
- rtmo-m_batch4.onnx +3 -0
- rtmo-s.fp16.onnx +2 -2
- rtmo-s.fp16_batch1.onnx +3 -0
- rtmo-s.fp16_batch2.onnx +3 -0
- rtmo-s.fp16_batch4.onnx +3 -0
- rtmo-s.onnx +2 -2
- rtmo-s_batch1.onnx +3 -0
- rtmo-s_batch2.onnx +3 -0
- rtmo-s_batch4.onnx +3 -0
- rtmo-t.fp16.onnx +2 -2
- rtmo-t.fp16_batch1.onnx +3 -0
- rtmo-t.fp16_batch2.onnx +3 -0
- rtmo-t.fp16_batch4.onnx +3 -0
- rtmo-t.onnx +2 -2
- rtmo-t_batch1.onnx +3 -0
- rtmo-t_batch2.onnx +3 -0
- rtmo-t_batch4.onnx +3 -0
- rtmo_demo_batch.py +3 -3
- rtmo_gpu.py +6 -2
- symbolic_shape_infer.py +0 -0
- symbolic_shape_infer_all.sh +6 -0
demo.sh
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
#!/bin/sh
|
2 |
-
python3
|
|
|
1 |
#!/bin/sh
|
2 |
+
python3 rtmo_demo.py ./video rtmo-t.fp16_batch1.onnx
|
demo_batch.sh
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
python3 rtmo_demo_batch.py ./video rtmo-t.fp16_batch4.onnx 4
|
fix_input_batch_size.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import onnx
|
2 |
+
import argparse
|
3 |
+
|
4 |
+
def modify_batch_size(input_model_path, output_model_path, batch_size):
|
5 |
+
# Load the ONNX model
|
6 |
+
model = onnx.load(input_model_path)
|
7 |
+
|
8 |
+
# Modify the batch size of the first input tensor
|
9 |
+
input_tensor = model.graph.input[0]
|
10 |
+
input_tensor.type.tensor_type.shape.dim[0].dim_value = batch_size
|
11 |
+
|
12 |
+
# Save the modified model
|
13 |
+
onnx.save(model, output_model_path)
|
14 |
+
print(f"Modified model saved to {output_model_path}")
|
15 |
+
|
16 |
+
if __name__ == "__main__":
|
17 |
+
# Parse command line arguments
|
18 |
+
parser = argparse.ArgumentParser(description="Modify the batch size of the first input tensor of an ONNX model.")
|
19 |
+
parser.add_argument("input_model_path", type=str, help="Path to the input ONNX model file.")
|
20 |
+
parser.add_argument("output_model_path", type=str, help="Path to save the modified ONNX model file.")
|
21 |
+
parser.add_argument("--batch_size", type=int, help="Desired batch size for the first input tensor.")
|
22 |
+
|
23 |
+
args = parser.parse_args()
|
24 |
+
|
25 |
+
# Ensure that the batch_size argument has been provided
|
26 |
+
if args.batch_size is None:
|
27 |
+
raise ValueError("Please specify the new batch size for the input tensor using --batch_size.")
|
28 |
+
|
29 |
+
# Call the function to modify the model's batch size
|
30 |
+
modify_batch_size(args.input_model_path, args.output_model_path, args.batch_size)
|
31 |
+
|
fix_input_batch_size_all.sh
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Directory containing the original ONNX models
|
4 |
+
MODEL_DIR="."
|
5 |
+
|
6 |
+
# Directory to save the modified ONNX models
|
7 |
+
OUTPUT_DIR="."
|
8 |
+
|
9 |
+
# Ensure output directory exists
|
10 |
+
mkdir -p "$OUTPUT_DIR"
|
11 |
+
|
12 |
+
# Path to the Python script
|
13 |
+
PYTHON_SCRIPT="fix_input_batch_size.py"
|
14 |
+
|
15 |
+
# Loop through each ONNX model in the directory
|
16 |
+
for model in "$MODEL_DIR"/*.onnx; do
|
17 |
+
echo "Processing $model..."
|
18 |
+
filename=$(basename -- "$model")
|
19 |
+
base="${filename%.*}"
|
20 |
+
|
21 |
+
# Generate models with batch size 1
|
22 |
+
output_model_1="$OUTPUT_DIR/${base}_batch1.onnx"
|
23 |
+
python "$PYTHON_SCRIPT" "$model" "$output_model_1" --batch_size 1
|
24 |
+
echo "Generated model with batch size 1: $output_model_1"
|
25 |
+
|
26 |
+
# Generate models with batch size 2
|
27 |
+
output_model_2="$OUTPUT_DIR/${base}_batch2.onnx"
|
28 |
+
python "$PYTHON_SCRIPT" "$model" "$output_model_2" --batch_size 1
|
29 |
+
echo "Generated model with batch size 2: $output_model_2"
|
30 |
+
|
31 |
+
# Generate models with batch size 4
|
32 |
+
output_model_4="$OUTPUT_DIR/${base}_batch4.onnx"
|
33 |
+
python "$PYTHON_SCRIPT" "$model" "$output_model_4" --batch_size 4
|
34 |
+
echo "Generated model with batch size 4: $output_model_4"
|
35 |
+
done
|
36 |
+
|
37 |
+
echo "Batch size modification complete."
|
38 |
+
|
rtmo-l.fp16.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:41842e64e5a06910f8795264c13ca64d46ab445cbaedd9556341a283a15120e4
|
3 |
+
size 88036975
|
rtmo-l.int8.onnx → rtmo-l.fp16_batch1.onnx
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9c9fee334086aec0482b348cb74a61bc144c0a9bd23550ebdc05001f2ca86d9
|
3 |
+
size 88036970
|
rtmo-m.int8.onnx → rtmo-l.fp16_batch2.onnx
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c9c9fee334086aec0482b348cb74a61bc144c0a9bd23550ebdc05001f2ca86d9
|
3 |
+
size 88036970
|
rtmo-s.int8.onnx → rtmo-l.fp16_batch4.onnx
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f2098f33be14598dee33f0203a6fa3ed72e80159b691e1c664ef9869a7ec215
|
3 |
+
size 88036970
|
rtmo-l.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:17f5d796e96b1ba8a7a137c77df449121de98463325ead8ad51f76eae0aa2410
|
3 |
+
size 175941851
|
rtmo-l_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb610ad52d5090881bbb5f7b8720773846a65257ddda8f7cba29d848688d8fb6
|
3 |
+
size 175941846
|
rtmo-l_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eb610ad52d5090881bbb5f7b8720773846a65257ddda8f7cba29d848688d8fb6
|
3 |
+
size 175941846
|
rtmo-l_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c83886f33bba6bda437ce9fafe2b395d33993f1bfc00a8b1f27f3a094ae69ef1
|
3 |
+
size 175941846
|
rtmo-m.fp16.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e4c1f6a2f2910516c3036cf7ae9d2882ddb60da0ecc9933d0ab1b8f0da626a55
|
3 |
+
size 44714762
|
rtmo-t.int8.onnx → rtmo-m.fp16_batch1.onnx
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59d4a54c134dabeecbe58597b323be6e31ae500745476f2f276e38a2b03c4ed9
|
3 |
+
size 44714757
|
rtmo-m.fp16_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:59d4a54c134dabeecbe58597b323be6e31ae500745476f2f276e38a2b03c4ed9
|
3 |
+
size 44714757
|
rtmo-m.fp16_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a91b7825665588667ed4aff965327b3b7f759ea449c187e17b5141c1c6756fde
|
3 |
+
size 44714757
|
rtmo-m.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8d37517b7ab13732ebab08d2fe39a3b0f9991daf5828336078239500a9cf687c
|
3 |
+
size 89307176
|
rtmo-m_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26d4434838a4ff158f6cdcab421a08ddd82900f3fcc41ec0921d7245e2c5818d
|
3 |
+
size 89307171
|
rtmo-m_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:26d4434838a4ff158f6cdcab421a08ddd82900f3fcc41ec0921d7245e2c5818d
|
3 |
+
size 89307171
|
rtmo-m_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a263fb2e9310073d147fe1aeac80762c4213be1bcd84be689b0973a61c36efa
|
3 |
+
size 89307171
|
rtmo-s.fp16.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0f3c71e5182f44d04b0f51fbbc8c1185907e47e0467bdf2eba200ec91d3fa920
|
3 |
+
size 19881237
|
rtmo-s.fp16_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79491abe6e66eaa4277a29ff7d3c2b47276d2d0ef7fd29f4f3df492f2f09000f
|
3 |
+
size 19881232
|
rtmo-s.fp16_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:79491abe6e66eaa4277a29ff7d3c2b47276d2d0ef7fd29f4f3df492f2f09000f
|
3 |
+
size 19881232
|
rtmo-s.fp16_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4e649783597b0e5476f8bc3c97f73d8896b3e8e282849ad2e4495c13081b364
|
3 |
+
size 19881232
|
rtmo-s.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f9f7d1c4491b63ec8e85ef4ea729b43593fb35502ee8194ddd514f859c418cf7
|
3 |
+
size 39651665
|
rtmo-s_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:699704b00b06b791f31d6b15a7e4bb4abd57f8dab1a60c58fc22490d4ab55c93
|
3 |
+
size 39651660
|
rtmo-s_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:699704b00b06b791f31d6b15a7e4bb4abd57f8dab1a60c58fc22490d4ab55c93
|
3 |
+
size 39651660
|
rtmo-s_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f5d2304570931d9351d10f2940311f0dd8d774e92cc0ec88256d1fcfe4ee796c
|
3 |
+
size 39651660
|
rtmo-t.fp16.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8f07a4f57e575da5a3ef9b2f12259b2b2203f5ed22eaec4d9035caa9f01b1b04
|
3 |
+
size 13743176
|
rtmo-t.fp16_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af20fe3bc33039069697e5567262dcf79c9d47b502be5bc7b5a06460e730db03
|
3 |
+
size 13743171
|
rtmo-t.fp16_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:af20fe3bc33039069697e5567262dcf79c9d47b502be5bc7b5a06460e730db03
|
3 |
+
size 13743171
|
rtmo-t.fp16_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a7c066d130573f97dfdc8eb508a54efa56580c5f54003473c3799419f8b3bba
|
3 |
+
size 13743171
|
rtmo-t.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bc9c47920675ec6c216717793fb9e9f563a54dd103a6f48cf30647552bcd9c3
|
3 |
+
size 27375834
|
rtmo-t_batch1.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3493fc0b00118d937db56e3aa523799441e2f1a0f40753f15c8e34f0761c3c94
|
3 |
+
size 27375829
|
rtmo-t_batch2.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3493fc0b00118d937db56e3aa523799441e2f1a0f40753f15c8e34f0761c3c94
|
3 |
+
size 27375829
|
rtmo-t_batch4.onnx
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5024770899ee523e13a6f683a443c4c0820f90e17cdfe3985035466a4520f772
|
3 |
+
size 27375829
|
rtmo_demo_batch.py
CHANGED
@@ -6,12 +6,11 @@ from pathlib import Path
|
|
6 |
import argparse
|
7 |
from rtmo_gpu import RTMO_GPU_Batch, draw_skeleton # Ensure to import RTMO_GPU_Batch
|
8 |
|
9 |
-
def process_video(video_path, body_estimator):
|
10 |
cap = cv2.VideoCapture(video_path)
|
11 |
|
12 |
batch_frames = []
|
13 |
frame_idxs = []
|
14 |
-
batch_size = 4 # Define a suitable batch size based on your GPU memory
|
15 |
|
16 |
while cap.isOpened():
|
17 |
success, frame = cap.read()
|
@@ -61,6 +60,7 @@ if __name__ == "__main__":
|
|
61 |
parser = argparse.ArgumentParser(description='Process the path to a video file folder.')
|
62 |
parser.add_argument('path', type=str, help='Path to the folder containing video files (required)')
|
63 |
parser.add_argument('model_path', type=str, help='Path to a RTMO ONNX model file (required)')
|
|
|
64 |
|
65 |
# Parse the command-line arguments
|
66 |
args = parser.parse_args()
|
@@ -72,4 +72,4 @@ if __name__ == "__main__":
|
|
72 |
body_estimator = RTMO_GPU_Batch(onnx_model=onnx_model, model_input_size=model_input_size)
|
73 |
|
74 |
for mp4_path in Path(args.path).glob('*'):
|
75 |
-
process_video(str(mp4_path), body_estimator)
|
|
|
6 |
import argparse
|
7 |
from rtmo_gpu import RTMO_GPU_Batch, draw_skeleton # Ensure to import RTMO_GPU_Batch
|
8 |
|
9 |
+
def process_video(video_path, body_estimator, batch_size=4):
|
10 |
cap = cv2.VideoCapture(video_path)
|
11 |
|
12 |
batch_frames = []
|
13 |
frame_idxs = []
|
|
|
14 |
|
15 |
while cap.isOpened():
|
16 |
success, frame = cap.read()
|
|
|
60 |
parser = argparse.ArgumentParser(description='Process the path to a video file folder.')
|
61 |
parser.add_argument('path', type=str, help='Path to the folder containing video files (required)')
|
62 |
parser.add_argument('model_path', type=str, help='Path to a RTMO ONNX model file (required)')
|
63 |
+
parser.add_argument('batch_size', type=int, help='Path to a RTMO ONNX input batch size (required)')
|
64 |
|
65 |
# Parse the command-line arguments
|
66 |
args = parser.parse_args()
|
|
|
72 |
body_estimator = RTMO_GPU_Batch(onnx_model=onnx_model, model_input_size=model_input_size)
|
73 |
|
74 |
for mp4_path in Path(args.path).glob('*'):
|
75 |
+
process_video(str(mp4_path), body_estimator, args.batch_size)
|
rtmo_gpu.py
CHANGED
@@ -358,11 +358,15 @@ class RTMO_GPU(object):
|
|
358 |
device: str = 'cuda'):
|
359 |
|
360 |
if not os.path.exists(onnx_model):
|
361 |
-
|
362 |
-
|
363 |
|
364 |
providers = {'cpu': 'CPUExecutionProvider',
|
365 |
'cuda': [
|
|
|
|
|
|
|
|
|
366 |
('CUDAExecutionProvider', {
|
367 |
'cudnn_conv_algo_search': 'DEFAULT',
|
368 |
'cudnn_conv_use_max_workspace': True
|
|
|
358 |
device: str = 'cuda'):
|
359 |
|
360 |
if not os.path.exists(onnx_model):
|
361 |
+
# If the file does not exist, raise FileNotFoundError
|
362 |
+
raise FileNotFoundError(f"The specified ONNX model file was not found: {onnx_model}")
|
363 |
|
364 |
providers = {'cpu': 'CPUExecutionProvider',
|
365 |
'cuda': [
|
366 |
+
('TensorrtExecutionProvider', {
|
367 |
+
'trt_fp16_enable':True,
|
368 |
+
'trt_engine_cache_enable':True,
|
369 |
+
'trt_engine_cache_path':'cache'}),
|
370 |
('CUDAExecutionProvider', {
|
371 |
'cudnn_conv_algo_search': 'DEFAULT',
|
372 |
'cudnn_conv_use_max_workspace': True
|
symbolic_shape_infer.py
ADDED
The diff for this file is too large to render.
See raw diff
|
|
symbolic_shape_infer_all.sh
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
for f in $(ls -S *.onnx | tac);
|
2 |
+
do
|
3 |
+
echo Process "$f"
|
4 |
+
python3 symbolic_shape_infer.py --input "$f" --output "$f" --auto_merge;
|
5 |
+
done
|
6 |
+
|