Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 247 for Franko (0.22 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      const int64_t rank = input_type.getRank();
      if (rank <= 0) {
        return emitOptionalError(loc, "input should be of rank larger than 0");
      }
    
      int64_t axis_value = op.getAxisAttr().getInt();
      if (axis_value < 0) {
        axis_value += rank;
      }
      if (axis_value < 0 || axis_value >= rank) {
        return emitOptionalError(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    	// If one of the two pods is on the same node as one or more additional
    	// ready pods that belong to the same replicaset, whichever pod has more
    	// colocated ready pods is less
    	if s.Rank[i] != s.Rank[j] {
    		return s.Rank[i] > s.Rank[j]
    	}
    	// TODO: take availability into account when we push minReadySeconds information from deployment into pods,
    	//       see https://github.com/kubernetes/kubernetes/issues/22065
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_ops.h

      REGISTER_KERNEL_BUILDER(                                                     \
          Name("Rank").Device(DEVICE).HostMemory("output").TypeConstraint("T",     \
                                                                          TYPES),  \
          RankOp);                                                                 \
      REGISTER_KERNEL_BUILDER(                                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  4. .idea/dictionaries/Nikolay_Krasko.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Nikolay.Krasko">
        <words>
          <w>accessors</w>
          <w>codeowners</w>
          <w>coroutines</w>
          <w>crossinline</w>
          <w>fqname</w>
          <w>goto</w>
          <w>gradle</w>
          <w>infos</w>
          <w>intrinsics</w>
          <w>kdoc</w>
          <w>lateinit</w>
          <w>memoize</w>
          <w>memoized</w>
          <w>multiline</w>
          <w>navigatable</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 23 16:52:40 UTC 2023
    - 756 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.h

    }
    
    // Returns true if the given `value` has at least the specified rank or has
    // unranked type.
    inline bool HasRankAtLeast(Value value, int64_t rank) {
      RankedTensorType type = GetRankedTensorTypeForOperand(value);
      return !type || type.getRank() >= rank;
    }
    
    // Returns true if the given `value` has at most the specified rank or has
    // unranked type.
    inline bool HasRankAtMost(Value value, int64_t rank) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

            SmallVector<int64_t, 4>(rank, ShapedType::kDynamic), element_ty);
      }
    
      int64_t num_reduce_dim = 0;
      llvm::SmallVector<bool, 4> is_reduce_dim(rank, false);
      for (const APInt &index : indices.getValues<APInt>()) {
        int64_t dim = GetDimForAxis(index.getSExtValue(), rank);
        // Invalid input.
        if (dim < 0 || dim >= rank) return UnrankedTensorType::get(element_ty);
    
        if (!is_reduce_dim[dim]) {
          is_reduce_dim[dim] = true;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      auto str = [](ValueConstraint constraint) -> StringRef {
        switch (constraint) {
          case ValueConstraint::kRank:
            return "rank";
          case ValueConstraint::kShape:
            return "shape";
          case ValueConstraint::kValue:
            return "value";
          default:
            llvm_unreachable("unknown value constraint");
        }
      };
    
      os << str(constraint);
      return os;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (!input_ty) return success();
    
      int rank = input_ty.getRank();
      if (rank != 1 && rank != 2)
        return op.emitOpError("requires input of rank 1 or 2");
    
      if (rank == 1) {
        int64_t dim0 = input_ty.getDimSize(0);
        if (dim0 != ShapedType::kDynamic && dim0 != 4 && dim0 != 2)
          return op.emitOpError("requires 1D input of size 4 or size 2");
      }
    
      if (rank == 2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

        SmallVector<int64_t> shape_add(rank, 0);
        shape_add[pack_dim] = 1;
        shape_value = builder.create<TF::AddOp>(
            loc, shape_type, shape_value,
            CreateConstValue<int64_t>(builder, loc, {rank}, shape_add));
      }
      packed_shape[pack_dim] /= 2;
      SmallVector<int64_t> divisor(rank, 1);
      divisor[pack_dim] = 2;
    
      RankedTensorType packed_output_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

            }
    
            final ArtifactStatus that = (ArtifactStatus) o;
    
            return rank == that.rank;
        }
    
        public int hashCode() {
            return rank;
        }
    
        public String toString() {
            return key;
        }
    
        public int compareTo(ArtifactStatus s) {
            return rank - s.rank;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top