cfavml 0.2.0

CF's Accelerated Vector Math Library providing SIMD optimzied routines for vector operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Adds a single value to each element in vector `a` of size `dims`.

### Pseudocode

```ignore
result = [0; dims]

for i in range(dims):
    result[i] = a[i] + value

return result
```

# Safety

This routine assumes: