Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 195 for Indices (0.14 sec)

  1. pkg/apis/certificates/validation/validation.go

    		allErrors = append(allErrors, field.Invalid(path, "<value omitted>", "at least one trust anchor must be provided"))
    	}
    
    	for _, indices := range blockDedupe {
    		if len(indices) > 1 {
    			allErrors = append(allErrors, field.Invalid(path, "<value omitted>", fmt.Sprintf("duplicate trust anchor (indices %v)", indices)))
    		}
    	}
    
    	return allErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    }
    
    // Represents an op type and its operand indices that should be "compile time
    // constant" from the XLA compiler's point of view.
    template <typename OpT, int... OperandIdx>
    struct CompileTimeConstantOperand {
      static_assert(
          sizeof...(OperandIdx) > 0,
          "CompileTimeConstantOperand should have at least one operand index.");
    
      using OpType = OpT;
    
      // Returns the indices of operands that should be compile time constants.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //===----------------------------------------------------------------------===//
    
    // Here, $params and $indices needs to be ranked so that $axis and $batch_dims
    // attributes can be converted from TensorFlow axis format supporting negative
    // indexing to the HLO format.
    def LegalizeGatherV2 :
      Pat<(TF_GatherV2Op AnyRankedTensor:$params, AnyRankedTensor:$indices,
            (ConstantLikeMatcher ElementsAttr:$axis), $batch_dims),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      //     to segment the indices array, each segment corresponds to one element
      //     in the previous dimension. array_indices represents the index of the
      //     non-zero elements within this dimension (as those in the CSR matrix
      //     format, where the first array is row pointers and the second array is
      //     column indices).
      dense_size:int;
      array_segments:SparseIndexVector;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/tests/tfcompile_test.cc

      // Successful gather.
      {
        const float params[4] = {1, 2, 3, 4};
        std::copy(params + 0, params + 4, gather.arg0_data());
        const int32 indices[2] = {1, 3};
        std::copy(indices + 0, indices + 2, gather.arg1_data());
        EXPECT_TRUE(gather.Run());
        EXPECT_EQ(gather.error_msg(), "");
        const float results[2] = {2, 4};
        for (int i = 0; i < 2; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

    defm : LiftCompositeOpsWithActivation<TF_Relu6Op, "relu6">;
    
    def LiftGather : Pat<
      (TF_GatherV2Op:$res $params, $indices, $axis, $batch_dims),
      (LiftAsTFPartitionedCall<"composite_gather_fn">
        (ArgumentList $params, $indices, $axis),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"batch_dims"> $batch_dims))),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            List<String> unexpectedInputs = inputs.collect { formatInputForAssert(it) }.reverse()
            for (int i in expectedInputs.indices.reverse()) {
                def expectedInput = expectedInputs[i]
                for (int j in unexpectedInputs.indices) {
                    if (expectedInput.matches(unexpectedInputs[j])) {
                        expectedInputs.removeAt(i)
                        unexpectedInputs.removeAt(j)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/tpu_conversions.mlir

      // CHECK-NOT: tf_mlrt.executeop(
      // CHECK: [[device:%.*]] = tf_mlrt_tpu.get_tpu_host_device
      // CHECK: [[var:%.*]] = tf_mlrt.executeop.device([[device]]){{.*}}op: \22ResourceGather\22
      // CHECK: [[rendezvous_key_base:%.*]] = tf_mlrt_tpu.compile_and_execute([[var]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 04 21:25:31 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. src/regexp/example_test.go

    	// Output:
    	// [["ab" ""]]
    	// [["axxb" "xx"]]
    	// [["ab" ""] ["axb" "x"]]
    	// [["axxb" "xx"] ["ab" ""]]
    }
    
    func ExampleRegexp_FindAllStringSubmatchIndex() {
    	re := regexp.MustCompile(`a(x*)b`)
    	// Indices:
    	//    01234567   012345678
    	//    -ab-axb-   -axxb-ab-
    	fmt.Println(re.FindAllStringSubmatchIndex("-ab-", -1))
    	fmt.Println(re.FindAllStringSubmatchIndex("-axxb-", -1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

              clEnumValN(OpSet::UNIFORM_QUANTIZED, "UNIFORM_QUANTIZED",
                         "Uses TF Uniform Quantized ops"))};
    };
    
    // Check if given indices in `val1` has same number of elements as given
    // indices in `val2`.
    bool HasEqualElementSize(Value val1, Value val2, ArrayRef<int> val1_indices,
                             ArrayRef<int> val2_indices) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top