Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for conv2 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return emitOptionalError(location, "invalid padding format provided");
      }
    
      // Output always have rank 4. All dimensions are initialized to
      // dynamic size and can be partially inferred.
      // TFL's conv2d is always NHWC format & the filter is OHWI.
      SmallVector<int64_t, 4> return_shape(4, ShapedType::kDynamic);
      return_shape[0] = input_ty.getDimSize(0);
      return_shape[3] = filter_ty.getDimSize(0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top