Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for opset (0.14 sec)

  1. src/cmd/link/internal/ld/lib.go

    // As the names of these symbols are derived from the string of
    // the type, they can run to many kilobytes long. So we shorten
    // them using a SHA-1 when the name appears in the final binary.
    // This also removes characters that upset external linkers.
    //
    // These are the symbols that begin with the prefix 'type.' and
    // contain run-time type information used by the runtime and reflect
    // packages. All Go binaries contain these symbols, but only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    	data[len(prefix)+1] |= 2 // signals new pointer-free format
    	data = appendString(data, strdata["runtime.buildVersion"])
    	data = appendString(data, strdata["runtime.modinfo"])
    	// MacOS linker gets very upset if the size os not a multiple of alignment.
    	for len(data)%16 != 0 {
    		data = append(data, 0)
    	}
    	s.SetData(data)
    	s.SetSize(int64(len(data)))
    
    	// Add reference to go:buildinfo from the rodata section,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. RELEASE.md

            be properly resized at runtime.
            *   Enabled experimental support for a new quantization mode with 16-bit
                activations and 8-bit weights. See
                `lite.OpsSet.EXPERIMENTAL_TFLITE_BUILTINS_ACTIVATIONS_INT16_WEIGHTS_INT8`.
    *   CPU
        *   Fix an issue w/ dynamic weights and `Conv2D` on x86.
        *   Add a runtime Android flag for enabling `XNNPACK` for optimized CPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top