Commit d4269913 by masahi Committed by Tianqi Chen

add missing inline (#910)

parent 2a1e1607
...@@ -35,7 +35,7 @@ using FCommReduce = std::function< ...@@ -35,7 +35,7 @@ using FCommReduce = std::function<
* If any input element is negative, it will be treated as an offset from the * If any input element is negative, it will be treated as an offset from the
* last dimension (same as python indexing rules). * last dimension (same as python indexing rules).
*/ */
std::vector<int> GetRealAxis(int ndim, const std::vector<int>& axis) { inline std::vector<int> GetRealAxis(int ndim, const std::vector<int>& axis) {
std::vector<int> real_axis; std::vector<int> real_axis;
if (axis.size() == 0) { if (axis.size() == 0) {
for (int i = 0; i < ndim; ++i) { for (int i = 0; i < ndim; ++i) {
...@@ -59,7 +59,7 @@ std::vector<int> GetRealAxis(int ndim, const std::vector<int>& axis) { ...@@ -59,7 +59,7 @@ std::vector<int> GetRealAxis(int ndim, const std::vector<int>& axis) {
} }
/*! \brief Enumerate the axes for a reduce op */ /*! \brief Enumerate the axes for a reduce op */
Array<IterVar> MakeReduceAxes(const std::vector<int>& real_axis, const Tensor& data) { inline Array<IterVar> MakeReduceAxes(const std::vector<int>& real_axis, const Tensor& data) {
Array<IterVar> reduce_axes; Array<IterVar> reduce_axes;
for (auto i : real_axis) { for (auto i : real_axis) {
std::string name = "k" + std::to_string(i); std::string name = "k" + std::to_string(i);
...@@ -70,7 +70,7 @@ Array<IterVar> MakeReduceAxes(const std::vector<int>& real_axis, const Tensor& d ...@@ -70,7 +70,7 @@ Array<IterVar> MakeReduceAxes(const std::vector<int>& real_axis, const Tensor& d
} }
/*! \brief Calculate the target shape for a reduce op */ /*! \brief Calculate the target shape for a reduce op */
Array<Expr> MakeReduceTargetShape(const std::vector<int>& real_axis, inline Array<Expr> MakeReduceTargetShape(const std::vector<int>& real_axis,
const Tensor& data, const Tensor& data,
bool keepdims) { bool keepdims) {
auto ndim = data->shape.size(); auto ndim = data->shape.size();
...@@ -107,7 +107,7 @@ Array<Expr> MakeReduceTargetShape(const std::vector<int>& real_axis, ...@@ -107,7 +107,7 @@ Array<Expr> MakeReduceTargetShape(const std::vector<int>& real_axis,
* *
* \return The result tensor. * \return The result tensor.
*/ */
Tensor CommReduce(const Tensor& data, inline Tensor CommReduce(const Tensor& data,
const Array<Expr>& axis, const Array<Expr>& axis,
FReduce func, FReduce func,
bool keepdims = false) { bool keepdims = false) {
...@@ -159,7 +159,7 @@ Tensor CommReduce(const Tensor& data, ...@@ -159,7 +159,7 @@ Tensor CommReduce(const Tensor& data,
* *
* \return The result tensor. * \return The result tensor.
*/ */
Tensor CommReduceIdx(const Tensor& data, inline Tensor CommReduceIdx(const Tensor& data,
const Array<Expr>& axis, const Array<Expr>& axis,
FCommReduce func, FCommReduce func,
bool keepdims = false) { bool keepdims = false) {
...@@ -227,7 +227,7 @@ using FIdentity = std::function<Array<Expr>(std::vector<Type> types)>; ...@@ -227,7 +227,7 @@ using FIdentity = std::function<Array<Expr>(std::vector<Type> types)>;
* *
* \return A reducer function which creates a reduce expression over an axis. * \return A reducer function which creates a reduce expression over an axis.
*/ */
FCommReduce MakeCommReducer(FCombine fcombine, inline FCommReduce MakeCommReducer(FCombine fcombine,
FIdentity fidentity, FIdentity fidentity,
std::string name = "reduce") { std::string name = "reduce") {
return [fcombine, fidentity, &name] return [fcombine, fidentity, &name]
...@@ -277,7 +277,7 @@ inline Expr MaxOp(Expr source, Array<IterVar> axis) { ...@@ -277,7 +277,7 @@ inline Expr MaxOp(Expr source, Array<IterVar> axis) {
* *
* \return A Tensor whose op member is the sum operation * \return A Tensor whose op member is the sum operation
*/ */
Tensor sum(const Tensor& data, Array<Expr> axis, bool keepdims = false) { inline Tensor sum(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
return CommReduce(data, axis, tvm::sum, keepdims); return CommReduce(data, axis, tvm::sum, keepdims);
} }
...@@ -294,7 +294,7 @@ Tensor sum(const Tensor& data, Array<Expr> axis, bool keepdims = false) { ...@@ -294,7 +294,7 @@ Tensor sum(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
* *
* \return A Tensor whose op member is the min operation * \return A Tensor whose op member is the min operation
*/ */
Tensor min(const Tensor& data, Array<Expr> axis, bool keepdims = false) { inline Tensor min(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
return CommReduce(data, axis, MinOp, keepdims); return CommReduce(data, axis, MinOp, keepdims);
} }
...@@ -311,7 +311,7 @@ Tensor min(const Tensor& data, Array<Expr> axis, bool keepdims = false) { ...@@ -311,7 +311,7 @@ Tensor min(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
* *
* \return A Tensor whose op member is the max operation * \return A Tensor whose op member is the max operation
*/ */
Tensor max(const Tensor& data, Array<Expr> axis, bool keepdims = false) { // NOLINT(*) inline Tensor max(const Tensor& data, Array<Expr> axis, bool keepdims = false) { // NOLINT(*)
return CommReduce(data, axis, MaxOp, keepdims); return CommReduce(data, axis, MaxOp, keepdims);
} }
...@@ -328,7 +328,7 @@ Tensor max(const Tensor& data, Array<Expr> axis, bool keepdims = false) { // NO ...@@ -328,7 +328,7 @@ Tensor max(const Tensor& data, Array<Expr> axis, bool keepdims = false) { // NO
* *
* \return A Tensor whose op member is the argmin operation * \return A Tensor whose op member is the argmin operation
*/ */
Tensor argmin(const Tensor& data, Array<Expr> axis, bool keepdims = false) { inline Tensor argmin(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
auto fcombine = [](Array<Var> lhs, Array<Var> rhs) { auto fcombine = [](Array<Var> lhs, Array<Var> rhs) {
Array<Expr> result; Array<Expr> result;
result.push_back(tvm::select(lhs[1] <= rhs[1], lhs[0], rhs[0])); // idx result.push_back(tvm::select(lhs[1] <= rhs[1], lhs[0], rhs[0])); // idx
...@@ -358,7 +358,7 @@ Tensor argmin(const Tensor& data, Array<Expr> axis, bool keepdims = false) { ...@@ -358,7 +358,7 @@ Tensor argmin(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
* *
* \return A Tensor whose op member is the argmax operation * \return A Tensor whose op member is the argmax operation
*/ */
Tensor argmax(const Tensor& data, Array<Expr> axis, bool keepdims = false) { inline Tensor argmax(const Tensor& data, Array<Expr> axis, bool keepdims = false) {
auto fcombine = [](Array<Var> lhs, Array<Var> rhs) { auto fcombine = [](Array<Var> lhs, Array<Var> rhs) {
Array<Expr> result; Array<Expr> result;
result.push_back(tvm::select(lhs[1] >= rhs[1], lhs[0], rhs[0])); // idx result.push_back(tvm::select(lhs[1] >= rhs[1], lhs[0], rhs[0])); // idx
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment