Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getWho (0.17 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        if (!mlir::cast<ShapedType>(conv_op.getRhs().getType()).hasStaticShape()) {
          return false;
        }
        if (!mlir::cast<ShapedType>(conv_op.getLhs().getType()).hasStaticShape() &&
            !mlir::cast<ShapedType>(conv_op.getType()).hasStaticShape()) {
          auto dnums = conv_op.getDimensionNumbers();
          auto lhs_type = mlir::cast<ShapedType>(conv_op.getLhs().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        Value constant_val = add_op ? add_op.getRhs() : sub_op.getRhs();
        if (!matchPattern(constant_val, m_Constant(&added_value))) return failure();
    
        // Check the add op is applied to begin.
        mlir::TypedValue<::mlir::TensorType> begin_tensor =
            strided_slice_op.getBegin();
        mlir::TypedValue<::mlir::TensorType> add_source_tensor =
            add_op ? add_op.getLhs() : sub_op.getLhs();
        if (begin_tensor != add_source_tensor) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      }
    
      const auto input_type = op.getLhs().getType().cast<TensorType>();
      if (input_type.getRank() != 4) {
        LLVM_DEBUG(llvm::dbgs() << "Only 2D convolution op is supported. "
                                   "Expected input rank of 4. Got: "
                                << input_type.getRank() << ".\n");
        return failure();
      }
    
      const auto filter_type = op.getRhs().getType().cast<TensorType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    OpFoldResult MaximumOp::fold(FoldAdaptor adaptor) {
      auto lhs_type = getLhs().getType();
      auto rhs_type = getRhs().getType();
      // Only constant fold for float tensors of the same type is implemented.
      if (lhs_type != rhs_type || !IsFloatShapedType(lhs_type)) return nullptr;
    
      auto lhs = adaptor.getLhs().dyn_cast_or_null<DenseElementsAttr>();
      auto rhs = adaptor.getRhs().dyn_cast_or_null<DenseElementsAttr>();
      if (lhs && lhs.isSplat()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // "third_party/tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc" is
    // resolved
    LogicalResult PrecheckForXlaConvV2Op(XlaConvV2Op op) {
      auto input_tensor = op.getLhs();
      auto kernel_tensor = op.getRhs();
      auto window_strides = op.getWindowStrides();
      auto padding = op.getPadding();
      auto lhs_dilation = op.getLhsDilation();
      auto rhs_dilation = op.getRhsDilation();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        RegionRange regions,
        SmallVectorImpl<ShapedTypeComponents> &inferredReturnShapes) {
      XlaBroadcastHelperOpAdaptor op(operands.getValues(), attributes);
      Value lhs = op.getLhs();
      Value rhs = op.getRhs();
      auto set_unranked_results = [&]() {
        inferredReturnShapes.emplace_back(getElementTypeOrSelf(lhs));
        inferredReturnShapes.emplace_back(getElementTypeOrSelf(rhs));
        return success();
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                            reg.getFrom().attribute(artifactType, "jar")
                            reg.getTo().attribute(artifactType, "intermediate")
                        }
    
                        registerTransform(FileSizer) { reg ->
                            reg.getFrom().attribute(artifactType, "intermediate")
                            reg.getTo().attribute(artifactType, "final")
                        }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top