Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 412 for Computation (0.34 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          %computation = "tf_device.cluster_func"(%read) {func = @computation, use_spmd_for_xla_partitioning = true} : (tensor<i32>) -> tensor<i32>
          "tf.AssignVariableOp"(%partitioned_variable, %computation) : (tensor<!tf_type.resource<tensor<i32>>>, tensor<i32>) -> ()
          return
        }
    
        func @computation(%arg0: tensor<i32>) -> tensor<i32> {
          return %arg0: tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        $mlir_module is a serialized MLIR module with a `main` function that contains target computation.
        $metadata is a serialized TPUCompileMetadataProto describing the shapes and types of the inputs to the computation, as well as a mapping onto the TPU pod topology.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/strconv/ftoaryu.go

    	// Now compute mant*(2^e2)*(10^q).
    	// Is it an exact computation?
    	// Only small positive powers of 10 are exact (5^28 has 66 bits).
    	exact := q <= 27 && q >= 0
    
    	di, dexp2, d0 := mult64bitPow10(mant, e2, q)
    	if dexp2 >= 0 {
    		panic("not enough significant bits after mult64bitPow10")
    	}
    	// As a special case, computation might still be exact, if exponent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testlife/testdata/c-life.c

    	GoStart(2, x, y, 0, x / 2, y / 2, y, a, n);
    	GoStart(3, x, y, x / 2, x, y / 2, y, a, n);
    	GoWait(0);
    	GoWait(1);
    	GoWait(2);
    	GoWait(3);
    }
    
    // The actual computation.  This is called in parallel.
    void
    DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n)
    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    //
    // Like qcasts, a dcast is allowed to have both its operand and result
    // as non quantized types. This facilitates transformations and marks edges
    // where the computation must be carried out in the expressed type.
    //
    // Especially early in transformation, it is common to have dcasts on
    // all operands to ops that must operate with the expressed type (typically
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/c-life.c

    	GoStart(2, x, y, 0, x / 2, y / 2, y, a, n);
    	GoStart(3, x, y, x / 2, x, y / 2, y, a, n);
    	GoWait(0);
    	GoWait(1);
    	GoWait(2);
    	GoWait(3);
    }
    
    // The actual computation.  This is called in parallel.
    void
    DoStep(int xdim, int ydim, int xstart, int xend, int ystart, int yend, int *a, int *n)
    {
    	int x, y, c, i, j;
    
    	for(x = xstart; x < xend; x++) {
    		for(y = ystart; y < yend; y++) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Interface used to locate the root directory for a given project.
     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K 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. src/cmd/vendor/golang.org/x/mod/sumdb/cache.go

    		e.mu.Unlock()
    	}
    	return e.result
    }
    
    // Get returns the cached result associated with key.
    // It returns nil if there is no such result.
    // If the result for key is being computed, Get does not wait for the computation to finish.
    func (c *parCache) Get(key interface{}) interface{} {
    	entryIface, ok := c.m.Load(key)
    	if !ok {
    		return nil
    	}
    	e := entryIface.(*cacheEntry)
    	if atomic.LoadUint32(&e.done) == 0 {
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 29 20:10:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Interface used to locate the root directory for a given project.
     *
     * The root locator is usually looked up from the plexus container.
     * One notable exception is the computation of the early {@code session.rootDirectory}
     * property which happens very early.  The implementation used in this case
     * will be discovered using the JDK service mechanism.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top