forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonnxruntime_dependencies.dot
21 lines (21 loc) · 1.03 KB
/
onnxruntime_dependencies.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
digraph "GG" {
node [
fontsize = "12"
];
"node12" [ label="onnxruntime_graph" shape="diamond"];
"node10" [ label="onnxruntime_common" shape="diamond"];
"node12" -> "node10" // onnxruntime_graph -> onnxruntime_common
"node4" [ label="onnx" shape="diamond"];
"node12" -> "node4" // onnxruntime_graph -> onnx
"node15" [ label="onnxruntime_framework" shape="diamond"];
"node15" -> "node12" // onnxruntime_framework -> onnxruntime_graph
"node15" -> "node10" // onnxruntime_framework -> onnxruntime_common
"node15" -> "node4" // onnxruntime_framework -> onnx
"node17" [ label="onnxruntime_providers" shape="diamond"];
"node17" -> "node10" // onnxruntime_providers -> onnxruntime_common
"node17" -> "node15" // onnxruntime_providers -> onnxruntime_framework
"node18" [ label="onnxruntime_test_common" shape="house"];
"node6" [ label="onnxruntime_test_framework" shape="house"];
"node19" [ label="onnxruntime_test_ir" shape="house"];
"node20" [ label="onnxruntime_test_providers" shape="house"];
}