提交 a12cc548 编写于 作者: E eclipsess

RType -> GType

上级 7783e6e2
...@@ -1337,23 +1337,23 @@ class Reshape2Param : public OpParam { ...@@ -1337,23 +1337,23 @@ class Reshape2Param : public OpParam {
} }
} }
const RType *InputX() const { return input_x_; } const GType *InputX() const { return input_x_; }
const RType *InputShape() const { return input_shape_; } const GType *InputShape() const { return input_shape_; }
RType *Out() const { return out_; } GType *Out() const { return out_; }
RType *OutputXShape() const { return output_xshape_; } GType *OutputXShape() const { return output_xshape_; }
const vector<int> &Shape() const { return shape_; } const vector<int> &Shape() const { return shape_; }
const bool &Inplace() const { return inplace_; } const bool &Inplace() const { return inplace_; }
private: private:
RType *input_x_; GType *input_x_;
RType *input_shape_; GType *input_shape_;
RType *out_; GType *out_;
RType *output_xshape_; GType *output_xshape_;
vector<int> shape_; vector<int> shape_;
bool inplace_; bool inplace_;
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册