Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for computations (0.15 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    //
    //	OpVarDef x
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    //
    // then the liveness analysis would decide the previous value of x was
    // unnecessary even though it is about to be used by the x[1:] computation.
    // Similarly, if the generated code looked like:
    //
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    //	OpVarDef x
    //
    // then the liveness analysis will not preserve the new value of x, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

     * java.util.concurrent.Executor) Futures.catching}.
     *
     * <p>This class implements all methods in {@code ListenableFuture}. Subclasses should provide a way
     * to set the result of the computation through the protected methods {@link #set(Object)}, {@link
     * #setFuture(ListenableFuture)} and {@link #setException(Throwable)}. Subclasses may also override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

     * java.util.concurrent.Executor) Futures.catching}.
     *
     * <p>This class implements all methods in {@code ListenableFuture}. Subclasses should provide a way
     * to set the result of the computation through the protected methods {@link #set(Object)}, {@link
     * #setFuture(ListenableFuture)} and {@link #setException(Throwable)}. Subclasses may also override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       SMALL_DELAY_MS}, {@code MEDIUM_DELAY_MS}, {@code LONG_DELAY_MS}. The idea here is that a
     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. configure.py

                 'compilation to reduce the compilation time?'),
          'Eigen strong inline overridden.', 'Not overriding eigen strong inline, '
          'some compilations could take more than 20 mins.'):
        # Due to a known MSVC compiler issue
        # https://github.com/tensorflow/tensorflow/issues/10521
        # Overriding eigen strong inline speeds up the compiling of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        DeclareOpInterfaceMethods<RegionBranchOpInterface>,
        SingleBlockImplicitTerminator<"YieldOp">]> {
      let summary = [{Poly call}];
    
      let description = [{
        Have multiple function bodies for the same computation. This allows a
        program compiler/interpreter to choose one of the available options to
        execute the program based on which one is most suitable for the target
        backend.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Returns true if a return type was changed.
      bool InferShapeForXlaCallModule(XlaCallModuleOp op);
    
      // Infers the shape of _XlaHostComputeMlir based on the host computation
      // module.  Returns true if a return type was changed.
      bool InferShapeForXlaHostComputeMlir(_XlaHostComputeMlirOp op);
    
      // Infers the shape of function attached to XlaHostCompute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. src/math/big/float.go

    	rbit := z.mant.bit(r) & 1    // rounding bit; be safe and ensure it's a single bit
    	// The sticky bit is only needed for rounding ToNearestEven
    	// or when the rounding bit is zero. Avoid computation otherwise.
    	if sbit == 0 && (rbit == 0 || z.mode == ToNearestEven) {
    		sbit = z.mant.sticky(r)
    	}
    	sbit &= 1 // be safe and ensure it's a single bit
    
    	// cut off extra words
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    	}
    
    	gw, gwMap, nsReferences := convertGateways(ctx)
    	ctx.GatewayReferences = gwMap
    	result.Gateway = gw
    
    	result.VirtualService = convertVirtualService(ctx)
    
    	// Once we have gone through all route computation, we will know how many routes bound to each gateway.
    	// Report this in the status.
    	for _, dm := range gwMap {
    		for _, pri := range dm {
    			if pri.ReportAttachedRoutes != nil {
    				pri.ReportAttachedRoutes()
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            auto backend_config = builder_.CreateString(
                mlir::cast<mlir::vhlo::StringV1Attr>(vhlo_op.getBackendConfig())
                    .getValue()
                    .str());
            // building the computation info
            auto flex_builder = std::make_unique<flexbuffers::Builder>();
            size_t map_start = flex_builder->StartMap();
            auto attrs = vhlo_op->getAttrs();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top