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
Performs a horizontal sum of all elements in vector `a` of size `dims` returning the total.

### Pseudocode

```ignore
result = 0

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

return result
```

# Safety

This routine assumes: