MCPcopy Create free account
hub / github.com/OAID/Tengine / BatchNorm

Class BatchNorm

operator/include/operator/batch_norm.hpp:34–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32#define BatchNormName "BatchNormalization"
33
34class BatchNorm : public OperatorWithParam<BatchNorm, BatchNormParam>
35{
36public:
37 BatchNorm()
38 {
39 name_ = BatchNormName;
40 }
41 BatchNorm(const BatchNorm& src) = default;
42 virtual ~BatchNorm(){};
43
44 void SetSchema(void) override;
45
46 float GetFops(const std::vector<TShape>& inputs, const std::vector<TShape>& outputs) override;
47};
48
49} // namespace TEngine
50

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected