Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for bounded (0.14 sec)

  1. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

      private final class ComplementRanges extends ImmutableList<Range<C>> {
        // True if the "positive" range set is empty or bounded below.
        private final boolean positiveBoundedBelow;
    
        // True if the "positive" range set is empty or bounded above.
        private final boolean positiveBoundedAbove;
    
        private final int size;
    
        ComplementRanges() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

    LogicalResult Tf2XlaRewriter::LegalizeOp() {
      for (Type ty : op_->getOperandTypes()) {
        auto ranked_ty = mlir::dyn_cast<ShapedType>(ty);
        // Only bounded operands are supported in the XLA builders.
        if (!IsBounded(ranked_ty)) {
          return op_->emitRemark()
                 << "lowering requires bounded tensor operands " << ranked_ty;
        }
      }
    
      if (HasSymbolRefAttr(op_)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        auto result_ty = mlir::cast<mlir::RankedTensorType>(type_and_idx.value());
    
        // If the result type isn't static, then the owner of the result may be a
        // cast op from a more specific bounded type to an unbounded dynamic type.
        // Use the bounded type to get the buffer size.
        mlir::RankedTensorType buffer_ty = result_ty;
        if (!buffer_ty.hasStaticShape()) {
          mlir::Value return_val = return_op->getOperand(idx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      };
    
      supported_ops->insert(allowlist_ops.begin(), allowlist_ops.end());
    }
    
    // Adds the list of ops that are only supported in the old bridge.
    // TODO(b/168036682): Remove bounded dynamism ops now that MLIR bridge supports
    // bounded dynamism.
    // TODO(b/257574556): Remove the need for this manual list by making use of old
    // bridge phase 2 op list.
    void AddOldBridgeOnlyOps(MLIRContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_metadata_utils.cc

            index, replication_attr_name);
        arg->set_is_same_data_across_replicas(attr != nullptr && attr.getValue());
    
        // Currently only support first dimension to be bounded dynamic.
        arg->mutable_is_bounded_dynamic_dim()->Add(
            dynamic_arg_idx_set.contains(index));
      }
    
      return success();
    }
    
    // Populates a TPUCompileMetadataProto with result sharding from a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // CHECK-LABEL: func @set_bound
    func.func @set_bound(%arg0: tensor<i32>) -> tensor<i32> {
      %bound = "tf.Const"() {value = dense<16> : tensor<i32>} : () -> tensor<i32>
      // CHECK: tf.XlaSetBound
      // CHECK-NOT: _xla_outside_compilation
      %bounded = "tf.XlaSetBound"(%arg0, %bound) : (tensor<i32>, tensor<i32>) -> tensor<i32>
      func.return %bounded : tensor<i32>
    }
    
    
    // CHECK-LABEL: func @unsupported_op_cpu_cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. test/codegen/shift.go

    	// amd64:-"TESTB"
    	_ = x << (v8 & 7)
    	// amd64:-"TESTW"
    	_ = x << (v16 & 15)
    	// amd64:-"TESTL"
    	_ = x << (v32 & 31)
    	// amd64:-"TESTQ"
    	_ = x << (v64 & 63)
    }
    
    // ------------------ //
    //   bounded shifts   //
    // ------------------ //
    
    func lshGuarded64(v int64, s uint) int64 {
    	if s < 64 {
    		// riscv64:"SLL",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    // equivalent by determining the types for a given list of (bound)
    // type parameters which may occur within x and y. If x and y are
    // structurally different (say []T vs chan T), or conflicting
    // types are determined for type parameters, unification fails.
    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    // equivalent by determining the types for a given list of (bound)
    // type parameters which may occur within x and y. If x and y are
    // structurally different (say []T vs chan T), or conflicting
    // types are determined for type parameters, unification fails.
    // If unification succeeds, as a side-effect, the types of the
    // bound type parameters may be determined.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// wait for the delayed stopCh before closing the handler chain (it rejects everything after Wait has been called).
    		<-notAcceptingNewRequestCh.Signaled()
    
    		// Wait for all requests to finish, which are bounded by the RequestTimeout variable.
    		// once NonLongRunningRequestWaitGroup.Wait is invoked, the apiserver is
    		// expected to reject any incoming request with a {503, Retry-After}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top