Skip to content
Snippets Groups Projects
Commit 59855419 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Update module to new CmakeLists.txt.

parent 9a94f3ad
No related branches found
No related tags found
No related merge requests found
Showing
with 50 additions and 50 deletions
......@@ -12,12 +12,12 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include "utils/Types.h"
#include "utils/Parameter.hpp"
// #include "backend/OperatorImpl.hpp"
#include "operator/Operator.hpp"
#include "operator/Producer.hpp"
#include "data/Tensor.hpp"
#include "aidge/utils/Types.h"
#include "aidge/utils/Parameter.hpp"
// #include "aidge/backend/OperatorImpl.hpp"
#include "aidge/operator/Operator.hpp"
#include "aidge/operator/Producer.hpp"
#include "aidge/data/Tensor.hpp"
namespace py = pybind11;
namespace Aidge {
......
......@@ -11,8 +11,8 @@
#include <pybind11/pybind11.h>
#include "operator/ReLU.hpp"
#include "operator/Operator.hpp"
#include "aidge/operator/ReLU.hpp"
#include "aidge/operator/Operator.hpp"
namespace py = pybind11;
namespace Aidge {
......
......@@ -12,8 +12,8 @@
#include <pybind11/pybind11.h>
#include <string>
#include "operator/Softmax.hpp"
#include "operator/Operator.hpp"
#include "aidge/operator/Softmax.hpp"
#include "aidge/operator/Operator.hpp"
namespace py = pybind11;
namespace Aidge {
......
......@@ -14,7 +14,7 @@
#include <string>
#include "utils/Recipies.hpp"
#include "aidge/utils/Recipies.hpp"
namespace py = pybind11;
......
......@@ -10,8 +10,8 @@
********************************************************************************/
#include <pybind11/pybind11.h>
#include "scheduler/Scheduler.hpp"
#include "graph/GraphView.hpp"
#include "aidge/scheduler/Scheduler.hpp"
#include "aidge/graph/GraphView.hpp"
namespace py = pybind11;
namespace Aidge {
......
#include <pybind11/pybind11.h>
#include "utils/Parameter.hpp"
#include "aidge/utils/Parameter.hpp"
namespace py = pybind11;
namespace Aidge {
......
......@@ -9,13 +9,13 @@
*
********************************************************************************/
#include "graph/Connector.hpp"
#include "aidge/graph/Connector.hpp"
#include <map>
#include "graph/GraphView.hpp"
#include "graph/Node.hpp"
#include "utils/Types.h"
#include "aidge/graph/GraphView.hpp"
#include "aidge/graph/Node.hpp"
#include "aidge/utils/Types.h"
Aidge::Connector::Connector(std::shared_ptr<Aidge::Node> node) {
mNode = node;
......
......@@ -14,9 +14,9 @@
#include <iterator>
#include <utility>
#include <utils/Types.h>
#include "graph/GraphView.hpp"
#include <data/Tensor.hpp>
#include "aidge/utils/Types.h"
#include "aidge/graph/GraphView.hpp"
#include "aidge/data/Tensor.hpp"
///////////////////////////////////////////////////////
// FUNCTIONAL DESCRIPTION
......
......@@ -9,13 +9,13 @@
*
********************************************************************************/
#include "graph/Node.hpp"
#include "aidge/graph/Node.hpp"
#include "graph/GraphView.hpp"
#include "operator/Producer.hpp"
#include "aidge/graph/GraphView.hpp"
#include "aidge/operator/Producer.hpp"
#include <memory>
#include <vector>
#include "utils/Types.h"
#include "aidge/utils/Types.h"
Aidge::Node::Node(std::shared_ptr<Operator> op, const char *name)
: mName((name == nullptr) ? std::string() : std::string(name)),
......
......@@ -9,9 +9,9 @@
*
********************************************************************************/
#include "graph/Node.hpp"
#include "graph/GraphView.hpp"
#include "graph/OpArgs.hpp"
#include "aidge/graph/Node.hpp"
#include "aidge/graph/GraphView.hpp"
#include "aidge/graph/OpArgs.hpp"
std::shared_ptr<Aidge::GraphView> Aidge::Sequential(std::initializer_list<OpArgs> inputs) {
......
......@@ -9,8 +9,8 @@
*
********************************************************************************/
#include "graphmatching/GRegex.hpp"
#include "graph/GraphView.hpp"
#include "aidge/graphmatching/GRegex.hpp"
#include "aidge/graph/GraphView.hpp"
using namespace Aidge;
......
......@@ -9,7 +9,7 @@
*
********************************************************************************/
#include "graphmatching/Match.hpp"
#include "aidge/graphmatching/Match.hpp"
using namespace Aidge;
......
......@@ -9,7 +9,7 @@
*
********************************************************************************/
#include "graphmatching/NodeRegex.hpp"
#include "aidge/graphmatching/NodeRegex.hpp"
// Verification done by the Parameter system
......
......@@ -9,7 +9,7 @@
*
********************************************************************************/
#include "graphmatching/SeqStm.hpp"
#include "aidge/graphmatching/SeqStm.hpp"
using namespace Aidge;
......
......@@ -9,7 +9,7 @@
*
********************************************************************************/
#include "graphmatching/StmFactory.hpp"
#include "aidge/graphmatching/StmFactory.hpp"
using namespace Aidge;
......
......@@ -11,9 +11,9 @@
#include <cassert>
#include "backend/OperatorImpl.hpp"
#include "operator/Operator.hpp"
#include "utils/Types.h"
#include "aidge/backend/OperatorImpl.hpp"
#include "aidge/operator/Operator.hpp"
#include "aidge/utils/Types.h"
// constexpr Aidge::Operator::Operator(const char* type)
// : mType(type)
......
......@@ -14,12 +14,12 @@
#include <memory>
#include <string>
#include "operator/FC.hpp"
#include "utils/Recipies.hpp"
#include "graph/GraphView.hpp"
#include "graph/Node.hpp"
#include "operator/Producer.hpp"
#include "operator/GenericOperator.hpp"
#include "aidge/operator/FC.hpp"
#include "aidge/utils/Recipies.hpp"
#include "aidge/graph/GraphView.hpp"
#include "aidge/graph/Node.hpp"
#include "aidge/operator/Producer.hpp"
#include "aidge/operator/GenericOperator.hpp"
using namespace Aidge;
......
......@@ -11,9 +11,9 @@
#include <memory>
#include "graph/Node.hpp"
#include "graph/GraphView.hpp"
#include "utils/Recipies.hpp"
#include "aidge/graph/Node.hpp"
#include "aidge/graph/GraphView.hpp"
#include "aidge/utils/Recipies.hpp"
namespace Aidge {
void removeFlatten(std::shared_ptr<GraphView> view) {
......
......@@ -9,16 +9,16 @@
*
********************************************************************************/
#include "scheduler/Scheduler.hpp"
#include "aidge/scheduler/Scheduler.hpp"
#include <chrono>
#include <memory>
#include <set>
#include <string>
#include "graph/GraphView.hpp"
#include "graph/Node.hpp"
#include "utils/Types.h"
#include "aidge/graph/GraphView.hpp"
#include "aidge/graph/Node.hpp"
#include "aidge/utils/Types.h"
void drawProgressBar(double progress, int barWidth, const char* additionalInfo = nullptr) {
putchar('[');
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment