Skip to content

Commit 7d42b12

Browse files
committed
address comments
1 parent dcabd8d commit 7d42b12

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

foxi/onnxifi_ext.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ typedef struct onnxTraceEventList {
3737
/**
3838
* The number of events in traceEvents.
3939
*/
40-
int32_t numEvents;
40+
uint64_t numEvents;
4141

4242
/**
43-
* A list of of onnxTraceEvents, the length of which is indicated by
44-
* numEvents.
43+
* A pointer to an array of pointers to onnxTraceEvents allocated by the onnx
44+
* backend, the length of which is indicated by numEvents.
4545
*/
46-
onnxTraceEvent *traceEvents;
46+
onnxTraceEvent **traceEvents;
4747
} onnxTraceEventList;
4848

4949
/**

0 commit comments

Comments
 (0)