Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 253 for computations (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    void EncodeSharding(mlir::Operation* op, llvm::StringRef shard_str);
    
    // Parses "input_sharding_configuration" attribute and returns a list where i-th
    // element is a list of mlir::Value's which represent inputs for the TPU
    // computation corresponding to i-th logical device. If the attribute does not
    // exist, the all inputs are placed on logical core 0.
    mlir::LogicalResult ExtractInputsForLogicalDevices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

    #define DEBUG_TYPE "quant-duplicate-shape-determining-constants"
    
    namespace mlir {
    namespace quant {
    namespace {
    
    // This pass duplicates constants that affect or determine the shape of a tensor
    // after being used in a computation for some op. Some specific operands of TF
    // ops (like the `dim` argument for `TF::ExpandDimsOp`) determine the shape of
    // the resulting tensor. If these operands are constants, they are duplicated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/par/work.go

    	}
    	return e.result
    }
    
    // Get returns the cached result associated with key
    // and reports whether there is such a result.
    //
    // If the result for key is being computed, Get does not wait for the computation to finish.
    func (c *Cache[K, V]) Get(key K) (V, bool) {
    	entryIface, ok := c.m.Load(key)
    	if !ok {
    		return *new(V), false
    	}
    	e := entryIface.(*cacheEntry[V])
    	if !e.done.Load() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	})
    	WorkloadServices.RegisterBatch(krt.BatchedEventFilter(
    		func(a model.ServiceInfo) *workloadapi.Service {
    			// Only trigger push if the XDS object changed; the rest is just for computation of others
    			return a.Service
    		},
    		PushXds(a.XDSUpdater, func(i model.ServiceInfo) model.ConfigKey {
    			return model.ConfigKey{Kind: kind.Address, Name: i.ResourceName()}
    		})), false)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/background-tasks.md

    You can see more details in <a href="https://www.starlette.io/background/" class="external-link" target="_blank">Starlette's official docs for Background Tasks</a>.
    
    ## Caveat
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.cc

      // Determine the scale.
      const double qminDouble = qmin;
      const double qmaxDouble = qmax;
      scale = (rmax - rmin) / (qmaxDouble - qminDouble);
    
      // Zero point computation.
      // In float, solve the affine equation for any known pair
      // (real value, corresponding quantized value), of which, two such pairs
      // are known: (rmin, qmin), (rmax, qmax).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      let description = [{
        This op is a TensorFlow op that represents "streamed outputs", where
        intermediate results can be returned immediately without waiting for the
        entire signature computation to complete.
    
        This op takes `args` with their `names` (their cardinality must match) and
        sends the given argument tensors back to the serving controller. This
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

      - `metric_computation_duration_seconds`: The time(seconds) that the HPA controller takes to calculate one metric.
      - `metric_computation_total`: Number of metric computations. ([#116326](https://github.com/kubernetes/kubernetes/pull/116326), [@sanposhiho](https://github.com/sanposhiho)) [SIG Apps, Autoscaling and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/while_gradients.cc

      return absl::OkStatus();
    }
    
    // Creates a loop that executes `loop_count` times. The returned output is the
    // boolean predicate indicating if the loop is still executing. This is used to
    // drive the gradient computation for the while loop associated with
    // `while_ctx`.
    Status AddBackPropLoopCounter(WhileContext* while_ctx, const Output& loop_count,
                                  const Scope& scope,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

    #define GEN_PASS_DEF_TPUBRIDGEEXECUTORISLANDOUTLININGPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Extract the islands containing a TPU cluster computation into an outlined
    // function in a nested module. This will allow to run the usual bridge on this
    // nested module which exhibit a more friendly "V2-like" structure.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top