Commit 9e3b19c8 authored by Davis King's avatar Davis King

Added warning about simd instructions

parent 9e3f6220
......@@ -2,6 +2,7 @@
// License: Boost Software License See LICENSE.txt for the full license.
#include <pybind11/pybind11.h>
#include <dlib/simd.h>
namespace py = pybind11;
......@@ -40,6 +41,8 @@ PYBIND11_MODULE(dlib, m)
#define DLIB_QUOTE_STRING2(x) #x
m.attr("__version__") = DLIB_QUOTE_STRING(DLIB_VERSION);
warn_about_unavailable_but_used_cpu_instructions();
bind_matrix(m);
bind_vector(m);
bind_svm_c_trainer(m);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment