headers are now included with their library prefix

This commit is contained in:
Bechir Braham
2024-04-09 11:36:15 +02:00
parent a2499c96d6
commit a48820059d
54 changed files with 86 additions and 76 deletions

View File

@ -6,7 +6,7 @@
#include <memory>
#include <thread>
#include "aare/ProducerConsumerQueue.hpp"
#include "aare/core/ProducerConsumerQueue.hpp"
namespace aare {

View File

@ -1,6 +1,6 @@
#pragma once
#include "aare/NDArray.hpp"
#include "aare/defs.hpp"
#include "aare/core/NDArray.hpp"
#include "aare/core/defs.hpp"
#include <cstddef>
#include <cstdint>
#include <memory>

View File

@ -7,7 +7,7 @@ memory.
TODO! Add expression templates for operators
*/
#include "aare/NDView.hpp"
#include "aare/core/NDView.hpp"
#include <algorithm>
#include <array>

View File

@ -5,7 +5,7 @@
#include <unordered_map>
#include <vector>
#include "aare/NDArray.hpp"
#include "aare/core/NDArray.hpp"
const int MAX_CLUSTER_SIZE = 200;
namespace aare {

View File

@ -1,5 +1,5 @@
#include "aare/DType.hpp"
#include "aare/core/DType.hpp"
#include <fmt/format.h>
namespace aare {

View File

@ -1,4 +1,4 @@
#include "aare/Frame.hpp"
#include "aare/core/Frame.hpp"
#include "aare/utils/logger.hpp"
#include <cassert>
#include <iostream>

View File

@ -1,4 +1,4 @@
#include "aare/defs.hpp"
#include "aare/core/defs.hpp"
namespace aare {

View File

@ -1,6 +1,6 @@
#include <catch2/catch_all.hpp>
#include "aare/CircularFifo.hpp"
#include "aare/core/CircularFifo.hpp"
using aare::CircularFifo;

View File

@ -1,6 +1,6 @@
#include "aare/DType.hpp"
#include "aare/core/DType.hpp"
#include <catch2/catch_test_macros.hpp>
using aare::DType;

View File

@ -1,4 +1,4 @@
#include "aare/Frame.hpp"
#include "aare/core/Frame.hpp"
#include <catch2/catch_test_macros.hpp>
using aare::Frame;

View File

@ -1,4 +1,4 @@
#include "aare/NDArray.hpp"
#include "aare/core/NDArray.hpp"
#include <array>
#include <catch2/catch_test_macros.hpp>

View File

@ -1,4 +1,4 @@
#include "aare/NDView.hpp"
#include "aare/core/NDView.hpp"
#include <catch2/catch_test_macros.hpp>
#include <iostream>

View File

@ -1,4 +1,4 @@
#include "aare/ProducerConsumerQueue.hpp"
#include "aare/core/ProducerConsumerQueue.hpp"
#include <catch2/catch_all.hpp>
// using arve::SimpleQueue;

View File

@ -1,4 +1,4 @@
#include "aare/defs.hpp"
#include "aare/core/defs.hpp"
#include <catch2/catch_test_macros.hpp>
#include <string>
TEST_CASE("Enum to string conversion") {

View File

@ -1,5 +1,5 @@
#include <aare/Frame.hpp>
#include <aare/NDView.hpp>
#include <aare/core/Frame.hpp>
#include <aare/core/NDView.hpp>
#include <catch2/catch_test_macros.hpp>
#include <cstdint>