fearless_simd 1.0.0-rc.1

Safer and easier SIMD
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Fearless SIMD examples

## sigmoid

This example demonstrates the common case: process data in chunks that are optimal for the CPU it's running on.

## sRGB

The sRGB example demonstrates:

1. processing data in fixed-sized chunks
2. dropping down to platform intrinsics for a part of the computation

# disable AVX2 for one function

Disables a specific SIMD instruction set for a single function.

See the [crate's README](../README.md) for other ways to control multiversioning, including global controls.