This is an automated email from the ASF dual-hosted git repository.
zhic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new 3004285 [Fix] fix compilation error when setting USE_RELAY_DEBUG
(#6380)
3004285 is described below
commit 3004285bebdfc0fc799b9278ff3ea763d41fe121
Author: Tianming Xu <[email protected]>
AuthorDate: Mon Sep 7 00:05:27 2020 +0800
[Fix] fix compilation error when setting USE_RELAY_DEBUG (#6380)
* fix compilation error when setting USE_RELAY_DEBUG
* awake github ci-test
* remove unnecessary debug log
---
src/runtime/vm/vm.cc | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/runtime/vm/vm.cc b/src/runtime/vm/vm.cc
index aeee137..0a0ff26 100644
--- a/src/runtime/vm/vm.cc
+++ b/src/runtime/vm/vm.cc
@@ -351,9 +351,6 @@ void VirtualMachine::RunLoop() {
main_loop:
auto const& instr = code_[this->pc_];
DLOG(INFO) << "Executing(" << pc_ << "): " << instr;
-#if USE_RELAY_DEBUG
- InstructionPrint(std::cout, instr);
-#endif // USE_RELAY_DEBUG
switch (instr.op) {
case Opcode::Move: {