We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcabd8d commit 7d42b12Copy full SHA for 7d42b12
foxi/onnxifi_ext.h
@@ -37,13 +37,13 @@ typedef struct onnxTraceEventList {
37
/**
38
* The number of events in traceEvents.
39
*/
40
- int32_t numEvents;
+ uint64_t numEvents;
41
42
43
- * A list of of onnxTraceEvents, the length of which is indicated by
44
- * numEvents.
+ * A pointer to an array of pointers to onnxTraceEvents allocated by the onnx
+ * backend, the length of which is indicated by numEvents.
45
46
- onnxTraceEvent *traceEvents;
+ onnxTraceEvent **traceEvents;
47
} onnxTraceEventList;
48
49
0 commit comments