Raghav-Chakravarthy commented on a change in pull request #8280:
URL: https://github.com/apache/tvm/pull/8280#discussion_r675064775



##########
File path: apps/microtvm/zephyr/aot_demo/src/main.c
##########
@@ -194,18 +195,18 @@ void main(void) {
   }
   TVMLogf("Zephyr AOT Runtime\n");
 
-  void* inputs[1] = {
-      input_data,
+  struct tvmgen_default_inputs inputs = {
+      .input_1 = input_data,
   };
-  void* outputs[1] = {
-      output_data,
+  struct tvmgen_default_outputs outputs = {

Review comment:
       TvmGenDefaultOutputs

##########
File path: apps/microtvm/zephyr/aot_demo/src/main.c
##########
@@ -194,18 +195,18 @@ void main(void) {
   }
   TVMLogf("Zephyr AOT Runtime\n");
 
-  void* inputs[1] = {
-      input_data,
+  struct tvmgen_default_inputs inputs = {

Review comment:
       TvmGenDefaultInputs




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to