Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for L2 (0.02 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. 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)
  3. 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)
Back to top