Skip to content

Commit

Permalink
Fix move (apache#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
wweic authored and jroesch committed Mar 26, 2019
1 parent 56b036c commit e5f1bb1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/relay/vm/vm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,13 @@ typename std::enable_if<T::value, void>::type VirtualMachine::DumpStack() {
}
case VMObjectTag::kDatatype: {
VMDatatypeCell* datatype = (VMDatatypeCell*)stack[i].operator->();
std::cout << "fields: " << datatype->fields.size();
std::cout << "\n";
RELAY_LOG(INFO) << "fields: " << datatype->fields.size();
RELAY_LOG(INFO) << "\n";
break;
}
default: {
RELAY_LOG(INFO) << "\n";
break;
}
}
}
Expand Down

0 comments on commit e5f1bb1

Please sign in to comment.