Skip to content
Snippets Groups Projects

[Scheduler] Add Scheduler.getNodeScheduling method and fix sequential function.

Merged Cyril Moineau requested to merge GetScheduling into main
2 unresolved threads
6 files
+ 33
17
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -55,7 +55,7 @@ public:
@@ -55,7 +55,7 @@ public:
* @param inputs List of Node and GraphView to link sequentially.
* @param inputs List of Node and GraphView to link sequentially.
* @return std::shared_ptr<GraphView> Pointer to the generated view.
* @return std::shared_ptr<GraphView> Pointer to the generated view.
*/
*/
std::shared_ptr<GraphView> Sequential(std::initializer_list<OpArgs> inputs);
std::shared_ptr<GraphView> Sequential(std::vector<OpArgs> inputs);
/////////////////////////////
/////////////////////////////
// Parallel
// Parallel
@@ -65,7 +65,7 @@ std::shared_ptr<GraphView> Sequential(std::initializer_list<OpArgs> inputs);
@@ -65,7 +65,7 @@ std::shared_ptr<GraphView> Sequential(std::initializer_list<OpArgs> inputs);
* @param inputs List of Node and GraphView to link sequentially.
* @param inputs List of Node and GraphView to link sequentially.
* @return std::shared_ptr<GraphView> pointer to the generated view.
* @return std::shared_ptr<GraphView> pointer to the generated view.
*/
*/
std::shared_ptr<GraphView> Parallel(std::initializer_list<OpArgs> inputs);
std::shared_ptr<GraphView> Parallel(std::vector<OpArgs> inputs);
/////////////////////////////
/////////////////////////////
// Residual
// Residual
@@ -79,8 +79,8 @@ std::shared_ptr<GraphView> Parallel(std::initializer_list<OpArgs> inputs);
@@ -79,8 +79,8 @@ std::shared_ptr<GraphView> Parallel(std::initializer_list<OpArgs> inputs);
* @param inputs List of Node and GraphView to link sequentially.
* @param inputs List of Node and GraphView to link sequentially.
* @return std::shared_ptr<GraphView> pointer to the generated view.
* @return std::shared_ptr<GraphView> pointer to the generated view.
*/
*/
std::shared_ptr<GraphView> Residual(std::initializer_list<OpArgs> inputs);
std::shared_ptr<GraphView> Residual(std::vector<OpArgs> inputs);
}
}
#endif /* AIDGE_CORE_GRAPH_OPARGS_H_ */
#endif /* AIDGE_CORE_GRAPH_OPARGS_H_ */
\ No newline at end of file
Loading