Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 303 for deduplicated (0.24 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/duplicate_shape_determining_constants.mlir

      %1 = "tf.AddV2"(%axis, %axis) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<i32>
    
      return %0 : tensor<16x4xf32>
    }
    // Check that the constant is cloned with same value.
    // The duplicated constant is the last index of the ConcatV2 op (which
    // accepts a variadic arg).
    // CHECK-DAG: %[[CST_0:.*]] = "tf.Const"()
    // CHECK-SAME: value = dense<1> : tensor<i32>
    // CHECK-DAG: %[[CST_1:.*]] = "tf.Const"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 07:44:46 UTC 2022
    - 11K bytes
    - Viewed (0)
  2. test/directive2.go

    type (
    	T4 int
    )
    
    //go:noinline // ERROR "misplaced compiler directive"
    type ()
    
    type T5 int
    
    func g() {} //go:noinline // ERROR "misplaced compiler directive"
    
    // ok: attached to f (duplicated yes, but ok)
    //go:noinline
    
    //go:noinline
    func f() {
    	//go:noinline // ERROR "misplaced compiler directive"
    	x := 1
    
    	//go:noinline // ERROR "misplaced compiler directive"
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 06:22:23 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        }
    
        @Override
        public Set<E> create(Object... elements) {
          Object[] duplicated = new Object[elements.length * 2];
          for (int i = 0; i < elements.length; i++) {
            duplicated[i] = elements[i];
            duplicated[i + elements.length] = elements[i];
          }
          return ((Multiset<E>) gen.create(duplicated)).elementSet();
        }
    
        @Override
        public E[] createArray(int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        }
    
        @Override
        public Set<E> create(Object... elements) {
          Object[] duplicated = new Object[elements.length * 2];
          for (int i = 0; i < elements.length; i++) {
            duplicated[i] = elements[i];
            duplicated[i + elements.length] = elements[i];
          }
          return ((Multiset<E>) gen.create(duplicated)).elementSet();
        }
    
        @Override
        public E[] createArray(int length) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. releasenotes/notes/29894.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 29026
    
    releaseNotes:
    - |
      **Added** `WorkloadEntry` resources will be read from all clusters in multi-cluster installations and do not need to be duplicated.
      Makes Virtual Machine auto-registration compatible with multi-primary multi-cluster. This feature is diabled by default and can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 20:15:28 UTC 2021
    - 461 bytes
    - Viewed (0)
  6. releasenotes/notes/manifest-base-cleanup.yaml

    upgradeNotes:
      - title: "`base` Helm Chart removals"
        content: |
          A number of configurations previously present in the the `base` Helm chart were *copied* to the `istiod` chart in a previous releases.
    
          In this release, the duplicated configurations are fully removed from the `base` chart.
    
          Below shows a mapping of old configuration to new configuration:
    
          | Old                                     | New                                     |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue35291.go

    // errorcheck
    
    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Check error message for duplicated index in slice literal
    
    package p
    
    var s = []string{
    	1: "dup",
    	1: "dup", // ERROR "duplicate index in slice literal: 1|duplicate value for index 1|duplicate index 1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 383 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/batch_function_deduplicate_failed.mlir

    // RUN: not tf-tfrt-opt -tfrt-deduplicate-functions-invoked-by-batch-function %s 2>&1 | FileCheck %s
    
    // This test verifies the error when two functions are different but invoked by
    // the batch functions with same shared_name.
    
    func.func private @batch_0(%arg0: tensor<?x?xi32>) -> tensor<*xi32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

    // Returns true if the op can be duplicated.
    bool TensorFlowDialect::CanDuplicate(Operation *op) {
      // If the op is marked with the cannot duplicate trait, it cannot be
      // duplicated.
      if (op->hasTrait<OpTrait::TF::CannotDuplicate>()) return false;
    
      // If the op has no memory side effects, it can be duplicated.
      if (isMemoryEffectFree(op)) return true;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue7153.go

    // errorcheck
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7153: array invalid index error duplicated on successive bad values
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 434 bytes
    - Viewed (0)
Back to top