mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 21:17:46 +00:00
a1e28d3740
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
14 lines
589 B
Markdown
14 lines
589 B
Markdown
# DLib {#dlib}
|
|
|
|
[DLib](http://dlib.net/) is a modern, C++-based toolkit which provides several machine learning algorithms.
|
|
|
|
## Compiling without AVX support {#compiling-without-avx-support}
|
|
|
|
Especially older CPUs don\'t support [AVX](https://en.wikipedia.org/wiki/Advanced_Vector_Extensions) (Advanced Vector Extensions) instructions that are used by DLib to optimize their algorithms.
|
|
|
|
On the affected hardware errors like `Illegal instruction` will occur. In those cases AVX support needs to be disabled:
|
|
|
|
```nix
|
|
self: super: { dlib = super.dlib.override { avxSupport = false; }; }
|
|
```
|