Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
10
Task/Fibonacci-sequence/StreamIt/fibonacci-sequence.streamit
Normal file
10
Task/Fibonacci-sequence/StreamIt/fibonacci-sequence.streamit
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
void->int feedbackloop Fib {
|
||||
join roundrobin(0,1);
|
||||
body in->int filter {
|
||||
work pop 1 push 1 peek 2 { push(peek(0) + peek(1)); pop(); }
|
||||
};
|
||||
loop Identity<int>;
|
||||
split duplicate;
|
||||
enqueue(0);
|
||||
enqueue(1);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue