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
17
Takes the element wise min of vector `a` of size `dims` and the provided broadcast value, storing the result
in vector `result` of size `dims`.

### Pseudocode

```ignore
result = [0; dims]

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

return result
```

# Safety

This routine assumes: