This is an automated email from the ASF dual-hosted git repository.

moreau pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm-vta.git


The following commit(s) were added to refs/heads/master by this push:
     new db65157  [xilinx] correct assert statement (#4)
db65157 is described below

commit db65157208ec8fabb7b548c94596211b9db04190
Author: ga <[email protected]>
AuthorDate: Mon Mar 30 14:40:41 2020 -0400

    [xilinx] correct assert statement (#4)
---
 hardware/xilinx/src/vta.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hardware/xilinx/src/vta.cc b/hardware/xilinx/src/vta.cc
index d9fe6f1..11ababf 100644
--- a/hardware/xilinx/src/vta.cc
+++ b/hardware/xilinx/src/vta.cc
@@ -738,5 +738,5 @@ void vta(
     g2s_count++;
   }
 
-  assert(l2g_count == 0 && g2s_count == 0 && g2l_count == 0 && g2s_count == 0);
+  assert(l2g_count == 0 && s2g_count == 0 && g2l_count == 0 && g2s_count == 0);
 }

Reply via email to