mehrdadh commented on code in PR #13518:
URL: https://github.com/apache/tvm/pull/13518#discussion_r1037687542


##########
tests/micro/arduino/test_arduino_rpc_server.py:
##########
@@ -318,31 +354,48 @@ def test_byoc_microtvm(board, arduino_cli_cmd, 
microtvm_debug, workspace_dir):
         arduino_board=board,
         arduino_cli_cmd=arduino_cli_cmd,
         workspace_dir=workspace_dir,
+        serial_number=serial_number,
     )
 
 
 def _make_add_sess_with_shape(
-    model, arduino_board, arduino_cli_cmd, workspace_dir, shape, build_config
+    model,
+    arduino_board,
+    arduino_cli_cmd,
+    workspace_dir,
+    shape,
+    build_config,
+    serial_number: str = None,
 ):
     A = tvm.te.placeholder(shape, dtype="int8")
     C = tvm.te.compute(A.shape, lambda i: A[i] + A[i], name="C")
     sched = tvm.te.create_schedule(C.op)
     return _make_sess_from_op(
-        model, arduino_board, arduino_cli_cmd, workspace_dir, "add", sched, 
[A, C], build_config
+        model,
+        arduino_board,
+        arduino_cli_cmd,
+        workspace_dir,
+        "add",
+        sched,
+        [A, C],
+        build_config,
+        serial_number,
     )
 
 
 @pytest.mark.parametrize(
     "shape,",
     [
         pytest.param((1 * 1024,), id="(1*1024)"),
-        pytest.param((4 * 1024,), id="(4*1024)"),
-        pytest.param((16 * 1024,), id="(16*1024)"),
+        # pytest.param((4 * 1024,), id="(4*1024)"),
+        # pytest.param((16 * 1024,), id="(16*1024)"),

Review Comment:
   thanks for catching this. I will uncomment them



-- 
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