Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jackm321 committed Mar 14, 2019
1 parent dcabd8d commit 7d42b12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions foxi/onnxifi_ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ typedef struct onnxTraceEventList {
/**
* The number of events in traceEvents.
*/
int32_t numEvents;
uint64_t numEvents;

/**
* A list of of onnxTraceEvents, the length of which is indicated by
* numEvents.
* A pointer to an array of pointers to onnxTraceEvents allocated by the onnx
* backend, the length of which is indicated by numEvents.
*/
onnxTraceEvent *traceEvents;
onnxTraceEvent **traceEvents;
} onnxTraceEventList;

/**
Expand Down

0 comments on commit 7d42b12

Please sign in to comment.