depot/third_party/nixpkgs/doc/packages/dlib.section.md
Default email 2c76a4cb41 Project import generated by Copybara.
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
2023-11-16 04:20:00 +00:00

589 B

DLib

DLib is a modern, C++-based toolkit which provides several machine learning algorithms.

Compiling without AVX support

Especially older CPUs don't support AVX (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:

self: super: { dlib = super.dlib.override { avxSupport = false; }; }