Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for getHits (0.21 sec)

  1. cluster/gce/upgrade.sh

    master_upgrade=true
    node_upgrade=true
    node_prereqs=false
    local_binaries=false
    env_os_distro=false
    node_upgrade_parallelism=1
    
    while getopts ":MNPlcho" opt; do
      case "${opt}" in
        M)
          node_upgrade=false
          ;;
        N)
          master_upgrade=false
          ;;
        P)
          node_prereqs=true
          ;;
        l)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // index in the subgraph list.
      int subgraph_index = 0;
      for (const auto& signature_def_data : signature_defs) {
        auto inputs = GetList(subgraph_index, signature_def_data.inputs);
        auto outputs = GetList(subgraph_index, signature_def_data.outputs);
        auto inputs_buf = builder_.CreateVector(inputs);
        auto outputs_buf = builder_.CreateVector(outputs);
        auto signature_key_buf =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.repositories.FlatDirectoryArtifactRepository.getDirs()> does not have raw return type assignable to org.gradle.api.provider.Property in (FlatDirectoryArtifactRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ShapedTypeComponents inferred = std::get<1>(result);
        TensorType inferred_type;
        if (inferred.hasRank()) {
          inferred_type =
              RankedTensorType::get(inferred.getDims(), inferred.getElementType());
    
        } else {
          inferred_type = UnrankedTensorType::get(inferred.getElementType());
        }
        inferred_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (!value_type) return failure();
        auto feature_dim = GetFeatureDimension(data_format, value_type);
        auto bias_broadcast = Broadcast1DToFeatureDim(
            loc, op.getValue(), op.getBias(), feature_dim, rewriter);
        Value add = rewriter.create<AddOp>(loc, op.getValue(), bias_broadcast);
        if (add.getType() != op.getType()) {
          add = rewriter.create<tensor::CastOp>(loc, op.getType(), add);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - `kube-apiserver`: Improved memory use when performing `GetList` on the cache. ([#116327](https://github.com/kubernetes/kubernetes/pull/116327), [@sxllwx](https://github.com/sxllwx))
    - `kube-controller-manager` and `cloud-controller-manager` have changed the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top