diff --git a/include/aidge/aidge.hpp b/include/aidge/aidge.hpp new file mode 100644 index 0000000000000000000000000000000000000000..7f32d695a41d954e9f31c6682e3cc6fc0226aed9 --- /dev/null +++ b/include/aidge/aidge.hpp @@ -0,0 +1,51 @@ +/******************************************************************************** + * Copyright (c) 2023 CEA-List + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * http://www.eclipse.org/legal/epl-2.0. + * + * SPDX-License-Identifier: EPL-2.0 + * + ********************************************************************************/ + +#ifndef __AIDGE_IMPORTS_H__ +#define __AIDGE_IMPORTS_H__ + +#include "aidge/backend/OperatorImpl.hpp" +#include "aidge/backend/TensorImpl.hpp" +#include "aidge/data/Data.hpp" +#include "aidge/data/Tensor.hpp" +#include "aidge/graph/Connector.hpp" +#include "aidge/graph/GraphView.hpp" +#include "aidge/graph/Node.hpp" +#include "aidge/graph/OpArgs.hpp" +#include "aidge/graphmatching/GRegex.hpp" +#include "aidge/graphmatching/Match.hpp" +#include "aidge/graphmatching/NodeRegex.hpp" +#include "aidge/graphmatching/SeqStm.hpp" +#include "aidge/graphmatching/StmFactory.hpp" +#include "aidge/graphmatching/Utile.hpp" +#include "aidge/operator/Add.hpp" +#include "aidge/operator/AvgPooling.hpp" +#include "aidge/operator/BatchNorm.hpp" +#include "aidge/operator/Conv.hpp" +#include "aidge/operator/ConvDepthWise.hpp" +#include "aidge/operator/FC.hpp" +#include "aidge/operator/GenericOperator.hpp" +#include "aidge/operator/Matmul.hpp" +#include "aidge/operator/MetaOperator.hpp" +#include "aidge/operator/Operator.hpp" +#include "aidge/operator/Producer.hpp" +#include "aidge/operator/ReLU.hpp" +#include "aidge/operator/Softmax.hpp" +#include "aidge/scheduler/Scheduler.hpp" +#include "aidge/utils/CParameter.hpp" +#include "aidge/utils/Parameter.hpp" +#include "aidge/utils/Recipies.hpp" +#include "aidge/utils/Registrar.hpp" +#include "aidge/utils/Types.h" +//#include "aidge/utilsParsing/AstNode.hpp" +//#include "aidge/utilsParsing/ParsingToken.hpp" + +#endif /* __AIDGE_IMPORTS_H__ */