Searched defs:Conv2dParam (Results 1 – 1 of 1) sorted by relevance
61 struct Conv2dParam { struct62 int32_t padding_left, padding_right;63 int32_t padding_top, padding_bottom;64 int32_t stride_width, stride_height;65 int32_t dilation_width_factor = 1, dilation_height_factor = 1;66 int32_t activation;67 bool useNchw = false;69 bool initialize(const IOperationExecutionContext* context) { in initialize()