Skip to content

Using the same blocks in different sequence simulation may lead to issues #2

Description

@dmatveev

On 6b7f6f6:

| src op |

src := 'Src' asSeqBlock latency: 10 ms; live.
op := 'Op' asSeqBlock latency: 15 ms.

src >> op.

{
"Run normally"
SeqNaiveMultiExecutor new 
	add: (Sequence startingWith: src);
	runFor: 50 ms;
	trace.

"Run same blocks but in different sequence"
SeqNaiveMultiExecutor new
	add: (Sequence startingWith: src);
	runFor: 50 ms;
	trace.
}

image

Expected blocks have the same color (assigned to the same pipeline)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions