Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFIntListIs1XY1 (0.1 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        if (!TFDataFormatIsNHWC(op)) return failure();
    
        IntegerAttr height, width;
        if (!TFIntListIs1XY1(op, "strides", &height, &width)) return failure();
    
        ConvertTFConvOpMatchState state;
        state.stride_height = height;
        state.stride_width = width;
    
        if (TFIntListIs1XY1(op, "dilations", &height, &width)) {
          state.dilation_height_factor = height;
          state.dilation_width_factor = width;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top