net.cc 411 字节
Newer Older
S
Superjom 已提交
1 2 3 4 5 6 7
#include "paddle/framework/net.h"

namespace paddle {
namespace framework {

PlainNet::PlainNet(const NetDesc& def) {}

S
Superjom 已提交
8
void PlainNet::InferShape(Scope* scope) {
S
Superjom 已提交
9
  for (auto& op : ops_) {
S
Superjom 已提交
10
    op.InferShape();
S
Superjom 已提交
11 12 13
  }
}

S
Superjom 已提交
14
void PlainNet::Run(Scope* scope, OpContext* context, OpIndex begin,
S
Superjom 已提交
15
                   OpIndex end) const {
16 17
  // TODO Add implementation here.
}
S
Superjom 已提交
18 19 20

}  // namespace framework
}  // namespace paddle