30using std::make_unique;
35GraphBuilderRegistry::GraphBuilderRegistry()
37 _builder_map[
"Concat"] = make_unique<ConcatBuilder>();
38 _builder_map[
"Convolution"] = make_unique<ConvolutionBuilder>();
39 _builder_map[
"Eltwise"] = make_unique<EltwiseBuilder>();
40 _builder_map[
"Input"] = make_unique<InputBuilder>();
41 _builder_map[
"Pooling"] = make_unique<PoolingBuilder>();
42 _builder_map[
"ReLU"] = make_unique<ReLUBuilder>();
43 _builder_map[
"Scale"] = make_unique<ScaleBuilder>();
44 _builder_map[
"BatchNorm"] = make_unique<BatchNormBuilder>();