Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for deduplicated (0.15 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              llvm::formatv("perm[{0}] must be in [-rank, rank)", index));
        }
        if (std::count(axes.begin(), axes.end(), axis) > 0) {
          return op.emitOpError(
              llvm::formatv("perm[{0}] cannot have duplicated axis", index));
        }
        axes.push_back(axis);
        index++;
      }
    
      if (input_type.hasStaticShape() && output_type.hasStaticShape()) {
        llvm::SmallVector<int64_t, 4> transposed_shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    Unfortunately, there is a much rarer second possible failure mode: the replication controller gets renamed to the old name, but there is a duplicated set of pods in the cluster. kubectl will not report an error since it thinks its job is done.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    
    // -----
    
    func.func @transpose_perm_axis_duplicated(%arg0 : tensor<2x2xi32>) -> tensor<2x2xi32> {
      %cst = arith.constant dense<[1, 1]> : tensor<2xi32>
      // expected-error @+1 {{perm[1] cannot have duplicated axis}}
      %0 = "tfl.transpose"(%arg0, %cst) : (tensor<2x2xi32>, tensor<2xi32>) -> tensor<2x2xi32>
      func.return %0 : tensor<2x2xi32>
    }
    
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top