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

Fix missing include in test.

parent 2dd6865d
No related branches found
No related tags found
2 merge requests!152Update Aidge export to take a graph view has an argument instead of a...,!137Fix fuse mulAdd (and more ;))
Pipeline #48524 failed
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include "aidge/graph/GraphView.hpp" #include "aidge/graph/GraphView.hpp"
#include "aidge/graph/Testing.hpp" #include "aidge/graph/Testing.hpp"
#include "aidge/graph/OpArgs.hpp" #include "aidge/graph/OpArgs.hpp"
#include "aidge/operator/Add.hpp"
#include "aidge/operator/ReLU.hpp" #include "aidge/operator/ReLU.hpp"
#include "aidge/operator/MetaOperatorDefs.hpp" #include "aidge/operator/MetaOperatorDefs.hpp"
#include "aidge/operator/Producer.hpp" #include "aidge/operator/Producer.hpp"
...@@ -367,7 +368,7 @@ TEST_CASE("[core/graph] Matching") { ...@@ -367,7 +368,7 @@ TEST_CASE("[core/graph] Matching") {
g1->save("graph_single_pass"); g1->save("graph_single_pass");
auto gm = SinglePassGraphMatching(g1); auto gm = SinglePassGraphMatching(g1);
const auto start = std::chrono::system_clock::now(); const auto start = std::chrono::system_clock::now();
const auto results = gm.match("Conv->ReLU#;ReLU#->Dummy"); const auto results = gm.match("Conv->ReLU#;ReLU#->Dummy");
const auto end = std::chrono::system_clock::now(); const auto end = std::chrono::system_clock::now();
......
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