Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for computations (0.26 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

         $input,
         (Arith_ConstantOp I32ElementsAttr:$axis),
         ConstBoolAttrFalse,
         $reverse),
      (replaceWithValue $input),
      [(AreInputDimensionsOneInAxes $input, $axis)]>;
    
    // Fusing raw computation of GELU op into one native tfl_gelu op.
    //
    // Requires constants to be exact match and only one use of all of the
    // intermediate results.
    //
    // For GeluApproximate, replaces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	var gcdata *byte
    	var ptrdata uintptr
    
    	size := abi.MapBucketCount*(1+ktyp.Size_+etyp.Size_) + goarch.PtrSize
    	if size&uintptr(ktyp.Align_-1) != 0 || size&uintptr(etyp.Align_-1) != 0 {
    		panic("reflect: bad size computation in MapOf")
    	}
    
    	if ktyp.Pointers() || etyp.Pointers() {
    		nptr := (abi.MapBucketCount*(1+ktyp.Size_+etyp.Size_) + goarch.PtrSize) / goarch.PtrSize
    		n := (nptr + 7) / 8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    			// the MAC function as extra data, to be fed into the HMAC after
    			// computing the digest. This makes the MAC roughly constant time as
    			// long as the digest computation is constant time and does not
    			// affect the subsequent write, modulo cache effects.
    			paddingLen, paddingGood = extractPadding(payload)
    		default:
    			panic("unknown cipher type")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    func (*Type) CanBeAnSSAAux() {}
    
    const (
    	typeNotInHeap  = 1 << iota // type cannot be heap allocated
    	typeNoalg                  // suppress hash and eq algorithm generation
    	typeDeferwidth             // width computation has been deferred and type is on deferredTypeStack
    	typeRecur
    	typeIsShape  // represents a set of closely related types, for generics
    	typeHasShape // there is a shape somewhere in the type
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    			return supportsRSAFallback(err)
    		}
    	}
    
    	// In TLS 1.3 we are done because supported_groups is only relevant to the
    	// ECDHE computation, point format negotiation is removed, cipher suites are
    	// only relevant to the AEAD choice, and static RSA does not exist.
    	if vers == VersionTLS13 {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// ignore scavenged memory) and doesn't contain heap objects. This isn't quite what
    	// lines up with reality, but it's a good starting point.
    	//
    	// In practice this computation looks like the following:
    	//
    	//    goal := memoryLimit - ((mappedReady - heapFree - heapAlloc) + max(mappedReady - memoryLimit, 0))
    	//                    ^1                                    ^2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_test.cc

      TF_Operation* plusB = Add(plus2, b, graph, s, "plusB");
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Setup a session and a partial run handle.  The partial run will allow
      // computation of A + 2 + B in two phases (calls to TF_SessionPRun):
      // 1. Feed A and get (A+2)
      // 2. Feed B and get (A+2)+B
      TF_SessionOptions* opts = TF_NewSessionOptions();
      TF_Session* sess = TF_NewSession(graph, opts, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    // - export functions to set Config fields
    
    // --------------------------------------------------------------------------
    // The new graph construction API, still under development.
    
    // Represents a computation graph.  Graphs may be shared between sessions.
    // Graphs are thread-safe when used as directed below.
    typedef struct TF_Graph TF_Graph;
    
    // Return a new graph object.
    TF_CAPI_EXPORT extern TF_Graph* TF_NewGraph(void);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K 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. src/cmd/go/internal/test/test.go

    	// the hash from the first part (testID) and the hash of the
    	// test inputs (testInputsID).
    	//
    	// In order to store a new test result, we must redo the
    	// testInputsID computation using the log from the run
    	// we want to cache, and then we store that new log and
    	// the new outputs.
    
    	h := cache.NewHash("testResult")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top