Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen committed Apr 10, 2020
1 parent 8128fdd commit 58f61a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/tvm/runtime/packed_func.h
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ class TVMArgValue : public TVMPODValue_ {
*
* We can only construct a movable argument once from a single argument position.
* If the argument is passed as RValue reference, the result will be moved.
* We should only construct a MovableArg from a argument once,
* We should only construct a MovableArg from an argument once,
* as the result will can moved.
*
* \note For internal development purpose only.
Expand Down Expand Up @@ -903,15 +903,15 @@ class TVMRetValue : public TVMPODValue_ {
template<typename TObjectRef>
struct PackedFuncValueConverter {
/*!
* \brief Convert an TObjectRef from an argument value.
* \brief Convert a TObjectRef from an argument value.
* \param val The argument value.
* \return the converted result.
*/
static TObjectRef From(const TVMArgValue& val) {
return val.AsObjectRef<TObjectRef>();
}
/*!
* \brief Convert an TObjectRef from an argument value.
* \brief Convert a TObjectRef from a return value.
* \param val The argument value.
* \return the converted result.
*/
Expand Down

0 comments on commit 58f61a3

Please sign in to comment.