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

masahi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 67a4a8b  Fix missing <cassert> header, caused compilation failure. 
(#7740)
67a4a8b is described below

commit 67a4a8bbdf6576e7a4e8df977b68eeccbb9d5e9b
Author: mvermeulen <5479696+mvermeu...@users.noreply.github.com>
AuthorDate: Thu Mar 25 03:21:50 2021 -0500

    Fix missing <cassert> header, caused compilation failure. (#7740)
---
 src/runtime/contrib/miopen/conv_forward.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/runtime/contrib/miopen/conv_forward.cc 
b/src/runtime/contrib/miopen/conv_forward.cc
index 1353e2f..e44a065 100644
--- a/src/runtime/contrib/miopen/conv_forward.cc
+++ b/src/runtime/contrib/miopen/conv_forward.cc
@@ -24,6 +24,8 @@
 #include <tvm/runtime/device_api.h>
 #include <tvm/runtime/registry.h>
 
+#include <cassert>
+
 #include "miopen_utils.h"
 
 namespace tvm {

Reply via email to