From b15a45da3950a9e5cb4c4bd6c7d6c478d02e8d26 Mon Sep 17 00:00:00 2001 From: weiwei zhou Date: Sun, 31 Jan 2021 17:26:33 +0800 Subject: [PATCH] Fix typo which causes "addConvRule not declared" (#387) * fix typo --- psenet/layers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/psenet/layers.h b/psenet/layers.h index bd85a18..264d645 100644 --- a/psenet/layers.h +++ b/psenet/layers.h @@ -13,6 +13,6 @@ IScaleLayer *addBatchNorm2d(INetworkDefinition *network, std::map &weightMap, ITensor &input, int ch, int stride, std::string lname, int branch_type); -IActivationLayer *ConvRelu(INetworkDefinition *network, std::map &weightMap, ITensor &input, int outch, int kernel, int stride, std::string lname); +IActivationLayer *addConvRelu(INetworkDefinition *network, std::map &weightMap, ITensor &input, int outch, int kernel, int stride, std::string lname); #endif