jroesch commented on a change in pull request #7518:
URL: https://github.com/apache/tvm/pull/7518#discussion_r664942913
##########
File path: src/runtime/graph_executor/graph_executor.cc
##########
@@ -395,6 +395,7 @@ void GraphExecutor::SetupOpExecs() {
std::pair<std::function<void()>, std::shared_ptr<GraphExecutor::OpArgs> >
GraphExecutor::CreateTVMOp(const TVMOpParam& param, const
std::vector<DLTensor>& args,
size_t num_inputs) {
+ std::cout << param.func_name << std::endl;
Review comment:
Remove this.
##########
File path: src/runtime/graph_executor/graph_executor.cc
##########
@@ -423,6 +424,8 @@ GraphExecutor::CreateTVMOp(const TVMOpParam& param, const
std::vector<DLTensor>&
auto fexec = [arg_ptr]() {
DLTensor* from = static_cast<DLTensor*>(arg_ptr->arg_values[0].v_handle);
DLTensor* to = static_cast<DLTensor*>(arg_ptr->arg_values[1].v_handle);
+ std::cout << "from: " << from->device.device_type << "to: " <<
to->device.device_type
Review comment:
Remove this.
--
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]