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