Fix typo which causes "addConvRule not declared" (#387)

* fix typo
This commit is contained in:
weiwei zhou 2021-01-31 17:26:33 +08:00 committed by GitHub
parent 32d960a47c
commit b15a45da39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,6 @@ IScaleLayer *addBatchNorm2d(INetworkDefinition *network, std::map<std::string, W
IActivationLayer *bottleneck(INetworkDefinition *network, std::map<std::string, Weights> &weightMap, ITensor &input, int ch, int stride, std::string lname, int branch_type);
IActivationLayer *ConvRelu(INetworkDefinition *network, std::map<std::string, Weights> &weightMap, ITensor &input, int outch, int kernel, int stride, std::string lname);
IActivationLayer *addConvRelu(INetworkDefinition *network, std::map<std::string, Weights> &weightMap, ITensor &input, int outch, int kernel, int stride, std::string lname);
#endif