Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
e471ca13
authored
9 years ago
by
Marcus Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
examples: changed dataflow example to show usage of Network::Make
parent
0e87c034
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
1 deletions
+4
-1
doc/examples/dataflow/dataflow_linear-fragmented.cc
+1
-0
doc/examples/dataflow/dataflow_make-snippet.h
+1
-0
doc/examples/dataflow/dataflow_network-snippet.h
+1
-1
doc/examples/dataflow/dataflow_nonlinear-fragmented.cc
+1
-0
No files found.
doc/examples/dataflow/dataflow_linear-fragmented.cc
View file @
e471ca13
...
@@ -57,5 +57,6 @@ void RunDataflowLinear() {
...
@@ -57,5 +57,6 @@ void RunDataflowLinear() {
#include "dataflow/dataflow_declare_sink-snippet.h"
#include "dataflow/dataflow_declare_sink-snippet.h"
#include "dataflow/dataflow_connect-snippet.h"
#include "dataflow/dataflow_connect-snippet.h"
#include "dataflow/dataflow_add-snippet.h"
#include "dataflow/dataflow_add-snippet.h"
#include "dataflow/dataflow_make-snippet.h"
#include "dataflow/dataflow_run-snippet.h"
#include "dataflow/dataflow_run-snippet.h"
}
}
This diff is collapsed.
Click to expand it.
doc/examples/dataflow/dataflow_make-snippet.h
0 → 100644
View file @
e471ca13
nw
.
Make
(
2
);
This diff is collapsed.
Click to expand it.
doc/examples/dataflow/dataflow_network-snippet.h
View file @
e471ca13
typedef
embb
::
dataflow
::
Network
<
2
>
Network
;
typedef
embb
::
dataflow
::
Network
Network
;
static
Network
nw
;
static
Network
nw
;
This diff is collapsed.
Click to expand it.
doc/examples/dataflow/dataflow_nonlinear-fragmented.cc
View file @
e471ca13
...
@@ -83,5 +83,6 @@ void RunDataflowNonLinear() {
...
@@ -83,5 +83,6 @@ void RunDataflowNonLinear() {
process5
.
GetOutput
<
1
>
()
>>
sink1
.
GetInput
<
2
>
();
process5
.
GetOutput
<
1
>
()
>>
sink1
.
GetInput
<
2
>
();
process4
.
GetOutput
<
1
>
()
>>
sink1
.
GetInput
<
3
>
();
process4
.
GetOutput
<
1
>
()
>>
sink1
.
GetInput
<
3
>
();
nw
.
Make
(
2
);
nw
();
nw
();
}
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment