Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for L2 (0.43 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

      pot_scale_int16:bool = true;
    }
    
    table MulOptions {
      fused_activation_function:ActivationFunctionType;
    }
    
    table L2NormOptions {
      // This field is currently ignored in the L2 Norm Op.
      fused_activation_function:ActivationFunctionType;
    }
    
    table LocalResponseNormalizationOptions {
      radius:int;
      bias:float;
      alpha:float;
      beta:float;
    }
    
    // LINT.IfChange
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

                      rule: self.all(l1, self.exists_one(l2, l1.name == l2.name))
                    - message: Combination of port, protocol and hostname must be unique
                        for each listener
                      rule: 'self.all(l1, self.exists_one(l2, l1.port == l2.port && l1.protocol
                        == l2.protocol && (has(l1.hostname) && has(l2.hostname) ? l1.hostname
                        == l2.hostname : !has(l1.hostname) && !has(l2.hostname))))'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    
    
    def TF_L2LossOp : TF_Op<"L2Loss", [Pure]> {
      let summary = "L2 Loss.";
    
      let description = [{
    Computes half the L2 norm of a tensor without the `sqrt`:
    
        output = sum(t ** 2) / 2
      }];
    
      let arguments = (ins
        Arg<TF_FloatTensor, [{Typically 2-D, but may have any dimensions.}]>:$x
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/strings/strings.go

    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    	// This yields significant speedups (up to +100%) in cases where
    	// the result length is large (roughly, over L2 cache size).
    	const chunkLimit = 8 * 1024
    	chunkMax := n
    	if n > chunkLimit {
    		chunkMax = chunkLimit / len(s) * len(s)
    		if chunkMax == 0 {
    			chunkMax = len(s)
    		}
    	}
    
    	var b Builder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Arg<TF_NumberTensor, [{Scaling factor. Must be a scalar.}]>:$lr,
        Arg<TF_NumberTensor, [{L1 regularization. Must be a scalar.}]>:$l1,
        Arg<TF_NumberTensor, [{L2 regularization. Must be a scalar.}]>:$l2,
        Arg<TF_Int64Tensor, [{Training step number. Must be a scalar.}]>:$global_step,
    
        DefaultValuedOptionalAttr<BoolAttr, "false">:$use_locking
      );
    
      let results = (outs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"otherField": "otherValue",
    					}},
    				applyPatchOperation{
    					"make maxField shorter",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"maxField": "l2",
    					}},
    				expectError{
    					applyPatchOperation{
    						"make maxField too long",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"maxField": "valuewithlength17",
    						}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. src/runtime/export_test.go

    	ranges := make([]AddrRange, 0, len(p.inUse.ranges))
    	for _, r := range p.inUse.ranges {
    		ranges = append(ranges, AddrRange{r})
    	}
    	return ranges
    }
    
    // Returns nil if the PallocData's L2 is missing.
    func (p *PageAlloc) PallocData(i ChunkIdx) *PallocData {
    	ci := chunkIdx(i)
    	return (*PallocData)((*pageAlloc)(p).tryChunkOf(ci))
    }
    
    // AddrRange is a wrapper around addrRange for testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  8. src/reflect/type.go

    func pkgPath(n abi.Name) string {
    	if n.Bytes == nil || *n.DataChecked(0, "name flag field")&(1<<2) == 0 {
    		return ""
    	}
    	i, l := n.ReadVarint(1)
    	off := 1 + i + l
    	if n.HasTag() {
    		i2, l2 := n.ReadVarint(off)
    		off += i2 + l2
    	}
    	var nameOff int32
    	// Note that this field may not be aligned in memory,
    	// so we cannot use a direct int32 assignment here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    	sg := mheap_.sweepgen
    
    	// Find the arena and page index into that arena for this shard.
    	ai := mheap_.markArenas[shard/(pagesPerArena/pagesPerSpanRoot)]
    	ha := mheap_.arenas[ai.l1()][ai.l2()]
    	arenaPage := uint(uintptr(shard) * pagesPerSpanRoot % pagesPerArena)
    
    	// Construct slice of bitmap which we'll iterate over.
    	specialsbits := ha.pageSpecials[arenaPage/8:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// time here is pretty trivial.
    	lock(&mheap_.lock)
    	arenas := mheap_.allArenas
    	unlock(&mheap_.lock)
    	for _, ai := range arenas {
    		ha := mheap_.arenas[ai.l1()][ai.l2()]
    		clear(ha.pageMarks[:])
    	}
    
    	work.bytesMarked = 0
    	work.initialHeapLive = gcController.heapLive.Load()
    }
    
    // Hooks for other packages
    
    var poolcleanup func()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top