Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for Unbounded (0.18 sec)

  1. src/unique/handle.go

    	// Create a map for T and try to register it. We could
    	// race with someone else, but that's fine; it's one
    	// small, stray allocation. The number of allocations
    	// this can create is bounded by a small constant.
    	m := &uniqueMap[T]{
    		HashTrieMap: concurrent.NewHashTrieMap[T, weak.Pointer[T]](),
    		cloneSeq:    makeCloneSeq(typ),
    	}
    	a, loaded := uniqueMaps.LoadOrStore(typ, m)
    	if !loaded {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    // `TPUBridgeExecutorIslandOutlining` pass.
    inline constexpr llvm::StringRef kSkipIslandOutlining =
        "_skip_island_outlining";
    // Function attribute to signal which argument contains bounded dynamic
    // dimension.
    inline constexpr llvm::StringRef kDynamicArgIndexAttr = "_dynamic_arg_index";
    
    // This string attribute encodes parallel execution groups and their associated
    // branches. It has the following format:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    // Returns idx converted to full int width.
    // If bounded is true then caller guarantees the index is not out of bounds
    // (but boundsCheck will still extend the index to full int width).
    func (s *state) boundsCheck(idx, len *ssa.Value, kind ssa.BoundsKind, bounded bool) *ssa.Value {
    	idx = s.extendIndex(idx, len, kind, bounded)
    
    	if bounded || base.Flag.B != 0 {
    		// If bounded or bounds checking is flag-disabled, then no check necessary,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/DiscreteDomain.java

     * {@link #previous} and {@link #distance}, according to their specifications. The methods {@link
     * #minValue} and {@link #maxValue} should also be overridden for bounded types.
     *
     * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot
     * represent partial domains such as "prime integers" or "strings of length 5."
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    // This should be larger than the size of unique, uncommon header keys likely to
    // be sent by the peer, while not so high as to permit unreasonable memory usage
    // if the peer sends an unbounded number of unique header keys.
    const http2maxCachedCanonicalHeadersKeysSize = 2048
    
    func (sc *http2serverConn) canonicalHeader(v string) string {
    	sc.serveG.check()
    	http2buildCommonHeaderMapsOnce()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/DiscreteDomain.java

     * {@link #previous} and {@link #distance}, according to their specifications. The methods {@link
     * #minValue} and {@link #maxValue} should also be overridden for bounded types.
     *
     * <p>A discrete domain always represents the <i>entire</i> set of values of its type; it cannot
     * represent partial domains such as "prime integers" or "strings of length 5."
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

      %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
    func.func @unsupported_op_cpu_cluster() -> tensor<i32> {
      %0 = "tf_device.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)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    		"SourcePath": "source_path",
    		"TrimPath":   "trim_path",
    		"DivideBy":   "divide_by",
    	}
    
    	// choices holds the list of allowed values for config fields that can
    	// take on one of a bounded set of values.
    	choices := map[string][]string{
    		"sort":        {"cum", "flat"},
    		"granularity": {"functions", "filefunctions", "files", "lines", "addresses"},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top