Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for computations (0.15 sec)

  1. tensorflow/compiler/jit/xla_device.h

        // a) argument and return value, for entry computations b) variables, for
        // all computations, should be represented in XLA. Parameters/return values
        // will be shaped according to the function pair, and reshaped back to/from
        // their declared shapes for computations. Must be non-empty.
        std::vector<XlaShapeLayoutHelpers::ShapeDeterminationFns>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

          return errors::InvalidArgument(
              "Undeclared output of XLA computation. Some common causes of this "
              "error are: 1) variable initializers that depend on the XLA "
              "computation; 2) gradient computations that depend on the XLA "
              "computation, which can be mitigated by moving gradient computations "
              "inside XLA computation. Offending edge: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    }
    
    def TfDevice_ReplicateOp : TfDevice_Op<"replicate",
        [SingleBlockImplicitTerminator<"ReturnOp">, AttrSizedOperandSegments]> {
      let summary = "Wraps an N-way replicated computation.";
    
      let description = [{
    The region held by this operation represents a computation that is replicated
    across multiple devices. The number of replications is based on the `n`
    attribute. Explicit devices can be populated in the `devices` attribute, and it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        computationLatch.countDown();
        // let some computations complete
        while (computedCount.get() < nThreads) {
          Thread.yield();
        }
        cache.invalidateAll();
        tasksFinished.await();
    
        // Check all of the removal notifications we received: they should have had correctly-associated
        // keys and values. (An earlier bug saw removal notifications for in-progress computations,
        // which had real keys with null values.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 20:10:02 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

          if (!operand_type.hasStaticShape() || !indices_type.hasStaticShape() ||
              !updates_type.hasStaticShape()) {
            return failure();
          }
    
          // Match the scatter computation against computations supported by TF.
          if (failed(MatchBinaryReduceFunction<BinaryOp>(
                  scatter_op.getUpdateComputation()))) {
            return failure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    * The cache has a builtin test, enabled with `UNSAFE_PILOT_ENABLE_RUNTIME_ASSERTIONS=true`, that runs in CI. This will panic if any key is written to with a different value.
    
    #### Partial Computations
    
    Along with caching, partial computations are a critical performance optimization to ensure that we do not need to build (or send) every resource to every proxy on every change. This is discussed more in the Config Serving section.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

        mlir::TF::RuntimeDevices devices, std::string* host_device);
    
    // Parses XLA compilation and execution devices from a tf_device.cluster and
    // returns the host device for the head and tail computations. For TPU device,
    // if the computation is replicated, GetDeviceAliasForHostOfLogicalCore(0) is
    // returned instead.
    mlir::LogicalResult GetHostDeviceOutsideComputation(
        mlir::TF::RuntimeDevices devices, mlir::tf_device::ClusterOp cluster,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

          location, output_type, concat_dimension_op.getOutput(), inputs);
    }
    
    // For tile sharded inputs to TPU computation, inject split op between the
    // input values and TPU computation so that tiled input values are passed in
    // as inputs to TPU computations. If more than one dimension is sharded, then
    // a tree of connected split ops are added before tf_device.parallel_execute op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

      let summary = "Decompose composite resource variable operations into primitive Read/AssignVariableOp and raw computation.";
    
      let description = [{
        A pass that decomposes composite resource operations into primitive ones like
        ReadVariableOp, AssignVariableOp and other computations to facilitate
        transformations like resource op lifting.
    
        For example:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Creates a pass that lifts operations on external resource variables from
    // device computation nested in `tf_device::LaunchOp` out so that resource
    // variable load operations are all before device computation while resource
    // variable store operations are all after device computation. After this pass,
    // device computation no longer interacts with external resource variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top