Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 381 for computations (0.23 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/tensorflow/ir/tf_device.cc

            [](Operation* user) { return isa<TF::AssignVariableOp>(user); });
    
        // TODO(b/186717563): Eliminate all pass through results once XLA correctly
        // handles empty computations. Another approach could be to drop empty
        // clusters within MLIR but that seems to trigger other failures but can be
        // considered again.
        // Old bridge only removes unsupported TPU types (only string for now)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      // Internal tensors are those that do not flow in or out of the operation,
      // but instead are part of internal computation. As such, the operation's
      // implementation may manage its memory more efficiently. They are needed
      // however (i.e. not just an implementation detail) since they are part of the
      // computation, which may require relevant metadata such as quantization
      // parameters.
      intermediates:[int];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    //
    // (Note that this can be viewed equivalently as:
    //
    //	actionID(binary)/buildID(main.a)/contentID(binary)
    //
    // Storing the buildID(main.a) in the middle lets the computations that care
    // about the prefix or suffix halves ignore the middle and preserves the
    // original build ID as a contiguous string.)
    //
    // During the build, when it's time to build main.a, the gofmt binary has the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/runtime/os_windows.go

    	physPageSize = getPageSize()
    
    	// Windows dynamic priority boosting assumes that a process has different types
    	// of dedicated threads -- GUI, IO, computational, etc. Go processes use
    	// equivalent threads that all do a mix of GUI, IO, computations, etc.
    	// In such context dynamic priority boosting does nothing but harm, so we turn it off.
    	stdcall2(_SetProcessPriorityBoost, currentProcess, 1)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    			if _, acc := x.val.Int(i); acc == big.Exact {
    				return makeInt(i)
    			}
    
    			// If we can get an integer by rounding up or down,
    			// assume x is not an integer because of rounding
    			// errors in prior computations.
    
    			const delta = 4 // a small number of bits > 0
    			var t big.Float
    			t.SetPrec(prec - delta)
    
    			// try rounding down a little
    			t.SetMode(big.ToZero)
    			t.Set(x.val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/CacheBuilder.java

       * usually have much noticeable impact. A value of one permits only one thread to modify the cache
       * at a time, but since read operations and cache loading computations can proceed concurrently,
       * this still yields higher concurrency than full synchronization.
       *
       * <p>Defaults to 4. <b>Note:</b>The default may change in the future. If you care about this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

       * usually have much noticeable impact. A value of one permits only one thread to modify the cache
       * at a time, but since read operations and cache loading computations can proceed concurrently,
       * this still yields higher concurrency than full synchronization.
       *
       * <p>Defaults to 4. <b>Note:</b>The default may change in the future. If you care about this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. src/math/big/int.go

    	//         == n * (n-1) * ... * (n-k+1) / 1 * (1+1) * ... * k
    	//
    	// Using the multiplicative formula produces smaller values
    	// at each step, requiring fewer allocations and computations:
    	//
    	// z = 1
    	// for i := 0; i < k; i = i+1 {
    	//     z *= n-i
    	//     z /= i+1
    	// }
    	//
    	// finally to avoid computing i+1 twice per loop:
    	//
    	// z = 1
    	// i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          result = op->getResult(0);
        }
        rewriter.replaceOp(op, {result});
        return success();
      }
    };
    
    // Lowers ResizeNearestNeighbor to an indices computations with a gather along
    // the combined spatial dimensions. Generating the indices along the
    // width/height index could be used to gather along each of W and H dimension
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top