From 1d3f595c7577179894328b84f66967645b938e7e Mon Sep 17 00:00:00 2001 From: Olivier BICHLER <olivier.bichler@cea.fr> Date: Thu, 22 Aug 2024 18:21:59 +0200 Subject: [PATCH] Fix wrong include paths --- python_binding/pybind_PTQ.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python_binding/pybind_PTQ.cpp b/python_binding/pybind_PTQ.cpp index 1d9359c..41e27d0 100644 --- a/python_binding/pybind_PTQ.cpp +++ b/python_binding/pybind_PTQ.cpp @@ -14,9 +14,9 @@ #include <string> -#include "aidge/PTQ/Clip.hpp" -#include "aidge/PTQ/CLE.hpp" -#include "aidge/PTQ/PTQ.hpp" +#include "aidge/quantization/PTQ/Clip.hpp" +#include "aidge/quantization/PTQ/CLE.hpp" +#include "aidge/quantization/PTQ/PTQ.hpp" #include "aidge/hook/Hook.hpp" #include "aidge/graph/GraphView.hpp" -- GitLab