Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for L2 (0.03 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case 1:
    		result = "PLI"
    	case 2:
    		result = "PST"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	switch prf_target {
    	case 0:
    		result += "L1"
    	case 1:
    		result += "L2"
    	case 2:
    		result += "L3"
    	case 3:
    		return fmt.Sprintf("#%#02x", uint8(i))
    	}
    	if prf_policy == 0 {
    		result += "KEEP"
    	} else {
    		result += "STRM"
    	}
    	return result
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// 	L3: func (recv S[B]) Bar() { }
    	// 	L4: type Alias = S[int]
    	// 	L5: func _[T any]() { var s S[int]; s.Foo() }
    	//
    	// The receivers of methods on generic types are instantiations. L2 and L3
    	// instantiate S with the type-parameters A and B, which are scoped to the
    	// respective methods. L4 and L5 each instantiate S with int. Each of these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_v3b.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;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. test/escape2.go

    L85:
    L86:
    L87:
    L88:
    L89:
    L90:
    L91:
    L92:
    L93:
    L94:
    L95:
    L96:
    L97:
    L98:
    L99:
    L100:
    	// use the labels to silence compiler errors
    	goto L1
    	goto L2
    	goto L3
    	goto L4
    	goto L5
    	goto L6
    	goto L7
    	goto L8
    	goto L9
    	goto L10
    	goto L11
    	goto L12
    	goto L13
    	goto L14
    	goto L15
    	goto L16
    	goto L17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  7. test/escape2n.go

    L85:
    L86:
    L87:
    L88:
    L89:
    L90:
    L91:
    L92:
    L93:
    L94:
    L95:
    L96:
    L97:
    L98:
    L99:
    L100:
    	// use the labels to silence compiler errors
    	goto L1
    	goto L2
    	goto L3
    	goto L4
    	goto L5
    	goto L6
    	goto L7
    	goto L8
    	goto L9
    	goto L10
    	goto L11
    	goto L12
    	goto L13
    	goto L14
    	goto L15
    	goto L16
    	goto L17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. 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