Skip to content

Commit

Permalink
[TVM][Bugfix] Fix missing runtime:: (#2966)
Browse files Browse the repository at this point in the history
  • Loading branch information
hlu1 authored and tqchen committed Apr 5, 2019
1 parent 6322afd commit 7cd986d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tvm/build_module.h
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ inline runtime::TVMRetValue GenericFunc::operator()(Args&& ...args) const {
const int kArraySize = kNumArgs > 0 ? kNumArgs : 1;
TVMValue values[kArraySize];
int type_codes[kArraySize];
runtime::detail::for_each(TVMArgsSetter(values, type_codes),
runtime::detail::for_each(runtime::TVMArgsSetter(values, type_codes),
std::forward<Args>(args)...);
runtime::TVMRetValue rv;
CallPacked(TVMArgs(values, type_codes, kNumArgs), &rv);
Expand Down

0 comments on commit 7cd986d

Please sign in to comment.