fix/scheduler_exec_time
2 unresolved threads
2 unresolved threads
Context
see issue : #89 (closed)
Merge request reports
Activity
Filter activity
added 1 commit
- b89440d2 - feat : schudelr test : reduced test number, increased graph size
added 1 commit
- b6505394 - feat : added @olivierbichler fix for scheduling + added FAILING test for cyclical graphs
added 1 commit
- 0c4623cd - Added cache system for getPriorProducersConsumers()
456 456 * @param inId index for adding the parent. 457 457 */ 458 458 void addParent(const NodePtr otherNode, const IOIndex_t inId); 459 460 /** 461 * @brief operator<< overload to ease print & debug of nodes 462 * @param[inout] ostream to print to 463 * @param[in] n node to print 464 */ 465 friend std::ostream& operator << (std::ostream& os, Node& n); Avoid overriding
std:ostream& operator<<
as it requires you to import the<iostream>
library, which is quite slow and avoided in the current Aidge framework. Prefer overriding the necessary functions to print with the library. I think you should overrideformat_as
function or theformatter
Edited by Maxence Naudchanged this line in version 7 of the diff
added 205 commits
-
14b20fe1...a0b56cd9 - 197 commits from branch
eclipse/aidge:dev
- 1dfbbd11 - feat : added ASAN support
- 10a0b754 - Merge remote-tracking branch 'EclipseRepo/dev' into feat/support_ASAN
- 000d75fc - feat : added CXX_STANDARD
- d497b10f - Merge remote-tracking branch 'origin/dev' into feat/support_ASAN
- 08562ee4 - Merge branch 'dev' of gitlab.eclipse.org:eclipse/aidge/aidge_core into feat/support_ASAN
- f47faada - Merge branch 'dev' of https://gitlab.eclipse.org/eclipse/aidge/aidge_core into...
- 9db14e85 - Merge remote-tracking branch 'fork/feat/support_ASAN' into fix/scheduler_exec_time
- ffc4d22e - chore : removed ostream operator<< support
Toggle commit list-
14b20fe1...a0b56cd9 - 197 commits from branch
added 1 commit
- 2f1f25a1 - Revert "chore : removed ostream operator<< support"
mentioned in merge request !91 (merged)
456 456 * @param inId index for adding the parent. 457 457 */ 458 458 void addParent(const NodePtr otherNode, const IOIndex_t inId); 459 460 // OPERATOR FUNCTIONNAL but commented out to avoid iostream inclusion 461 // /** 462 // * @brief operator<< overload to ease print & debug of nodes 463 // * @param[inout] ostream to print to 464 // * @param[in] n node to print 465 // */ 466 // friend std::ostream& operator << (std::ostream& os, Node& n); added 4 commits
-
80b2a9cd...5fd1117a - 3 commits from branch
eclipse/aidge:dev
- ebdf8b1e - Merge branch 'dev' of https://gitlab.eclipse.org/eclipse/aidge/aidge_core into...
-
80b2a9cd...5fd1117a - 3 commits from branch
added 1 commit
- a1a83f25 - Fix test_scheduler test and put back warning in Node
enabled an automatic merge when the pipeline for a1a83f25 succeeds
mentioned in commit 08a66f38
Please register or sign in to reply