Skip to documentation
SLOP

tiny.simd.haveThreadingSupport

Reference tiny.simd haveThreadingSupport

Defined in tiny.simd.

No direct callersNo direct callstiny.simdhaveThreadingSupport
Static calls · unresolved targets: 0 · external targets: 2.

Source

Source: lib/simd/src/topology/native.zig:29

zig
pub fn haveThreadingSupport() bool {    if (comptime builtin.target.os.tag == .emscripten) {        return wasm.haveThreadingSupport();    }    return if (comptime builtin.target.cpu.arch.isWasm())        !builtin.single_threaded    else        true;}

Source: lib/simd/src/root.zig:94

zig
pub const haveThreadingSupport = topology.haveThreadingSupport;

Also reachable as

topology.haveThreadingSupport.

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433