Searched defs:DepthwiseConv2dParam (Results 1 – 1 of 1) sorted by relevance
45 struct DepthwiseConv2dParam { struct46 int32_t padding_left, padding_right;47 int32_t padding_top, padding_bottom;48 int32_t stride_width, stride_height;49 int32_t dilation_width_factor = 1, dilation_height_factor = 1;50 int32_t depth_multiplier;51 int32_t activation;52 bool useNchw = false;54 bool initialize(const IOperationExecutionContext* context) { in initialize()