Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
14 lines
591 B
Markdown
14 lines
591 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; }; }
|
|
```
|