FastLED 3.9.15
Loading...
Searching...
No Matches
f32x4.h
Go to the documentation of this file.
1
3
4#pragma once
5
7
8namespace fl {
9namespace simd {
10
11//==============================================================================
12// Load/Store Operations
13//==============================================================================
14
18using platforms::load_f32_4; // ok bare using
19
23using platforms::store_f32_4; // ok bare using
24
25//==============================================================================
26// Broadcast/Set Operations
27//==============================================================================
28
32using platforms::set1_f32_4; // ok bare using
33
34//==============================================================================
35// Arithmetic Operations
36//==============================================================================
37
42using platforms::add_f32_4; // ok bare using
43
48using platforms::sub_f32_4; // ok bare using
49
54using platforms::mul_f32_4; // ok bare using
55
60using platforms::div_f32_4; // ok bare using
61
65using platforms::sqrt_f32_4; // ok bare using
66
67//==============================================================================
68// Min/Max Operations
69//==============================================================================
70
75using platforms::min_f32_4; // ok bare using
76
81using platforms::max_f32_4; // ok bare using
82
83} // namespace simd
84} // namespace fl
SIMD register type aliases.
Base definition for an LED controller.
Definition crgb.hpp:179