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
Finds the minimum element contained within vector `a` of size `dims` returning the result.

### Pseudocode

```ignore
result = inf

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

return result
```

# Safety

This routine assumes: