Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for Concatenates (0.42 sec)

  1. pkg/apis/admissionregistration/validation/validation.go

    	})
    }
    
    const (
    	maxAuditAnnotations = 20
    	// use a 5kb limit the CEL expression, note that this is less than the length limit
    	// for the audit annotation value limit (10kb) since an expressions that concatenates
    	// strings will often produce a longer value than the expression
    	maxAuditAnnotationValueExpressionLength = 5 * 1024
    )
    
    // ValidateValidatingAdmissionPolicy validates a ValidatingAdmissionPolicy before creation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

      // to produce the same result. It first slices the first `$index` rows. Then
      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
      // On a high level, it's doing something like:
      // def : Pat<(TF_TensorListSetItemOp $input, $index, $item),
      //      (Concat
      //        concat_dim = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // Tensor + Scalar: [..., 1] + []  <- scalar
      //                        ^
      //                        \- axis is the innermost dimension.
      //
      // Concatenate tensor arguments on the same axis as the original operation,
      // and concatenate scalars into the vector.
      if (is_all_tensors(0, axis) && is_all_scalars(1)) {
        std::array<int64_t, 1> rhs_dims{
            static_cast<int64_t>(op.getValues().size())};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/destination_rule.go

    // each config will result in a final dest rule set (*.foo.com, and *.com).
    //
    // The following is the merge logic:
    // 1. Unique subsets (based on subset name) are concatenated to the original rule's list of subsets
    // 2. If the original rule did not have any top level traffic policy, traffic policies from the new rule will be
    // used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize.mlir

          rhs_contracting_dimensions = [0]
      >} : (tensor<3x1x512xf32>, tensor<512x13xf32>) -> tensor<3x1x13xf32>
      %r = "mhlo.concatenate"(%0, %1, %2) <{dimension = 0 : i64}> : (tensor<1x1x13xf32>, tensor<2x1x13xf32>, tensor<3x1x13xf32>) -> tensor<6x1x13xf32>
      func.return %r : tensor<6x1x13xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      [
        Pure,
        TFL_SameFirstOperandAndFirstResultElementType,
        SameOperandsAndResultsScale,
        QuantizableResult
      ]> {
      let summary = "Concatenation operator";
    
      let description = [{
        Concatenates tensors along one dimension
      }];
    
      let arguments = (
        ins TFL_VariadicTensorOf<
          [F32, I64, I32, I16, I8, QI8, QUI8, UI8, UI32, I1]>:$values,
        I32Attr:$axis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

    //   %y1 = dot_general(%x1, %w)
    //   ...
    //   concatenate(%y0, %y1, ...)
    // To:
    //   %x = concatenate(%x0, %x1, ...)
    //   dot_general(%x, %w)
    LogicalResult LiftDotConcatLHS(mhlo::ConcatenateOp concat,
                                   PatternRewriter &rewriter) {
      if (concat.getVal().size() < 2)
        return rewriter.notifyMatchFailure(
            concat, "Concatenate op should have at least two operands");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. api/README

    warning output from the go api tool. Each file should be named
    nnnnn.txt, after the issue number for the accepted proposal.
    (The #nnnnn suffix must also appear at the end of each line in the file;
    that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
    
    When you add a file to the api/next directory, you must add at least one file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/add_dump_tensor_op_stablehlo.mlir

        %3 = stablehlo.concatenate %2, %1, dim = 0 : (tensor<1x3xf32>, tensor<1x3xf32>) -> tensor<2x3xf32>
        return %3 : tensor<2x3xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    }
    
    def TF_ConcatOp : TF_Op<"Concat", [Pure]> {
      let summary = "Concatenates tensors along one dimension.";
    
      let arguments = (ins
        Arg<TF_Int32Tensor, [{0-D.  The dimension along which to concatenate.  Must be in the
    range [0, rank(values)).}]>:$concat_dim,
        Arg<Variadic<TF_Tensor>, [{The `N` Tensors to concatenate. Their ranks and types must match,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top