fix ci error

gangliao-patch-1
Superjom 8 years ago
parent d1945e8d56
commit 9f2357561d

@ -12,7 +12,7 @@ void PlainNet::InferShape(Scope* scope) {
}
void PlainNet::Run(Scope* scope, OpContext* context, OpIndex begin,
OpIndex end) const {
OpIndex end) const {
// TODO Add implementation here.
}

@ -70,7 +70,7 @@ class Net {
* If no positive indexes are provided, all operators in `ops_` will run.
*/
virtual void Run(Scope *scope, OpContext *context, OpIndex begin = -1,
OpIndex end = -1) const = 0;
OpIndex end = -1) const = 0;
/**
* @brief Add an Operator according to `def`.
@ -125,7 +125,7 @@ class PlainNet : public Net {
* will be used.
*/
virtual void Run(Scope *scope = nullptr, OpContext *context = nullptr,
OpIndex begin = -1, OpIndex end = -1) const override;
OpIndex begin = -1, OpIndex end = -1) const override;
/**
* @brief Add an operator to this network.
@ -142,6 +142,8 @@ class PlainNet : public Net {
*/
virtual void AddBackwardOps() override;
virtual ~PlainNet() override {}
protected:
/**
* @brief Build the network.

Loading…
Cancel
Save