How to run a "sequence" on multiple sequencers in Parallel?

In reply to janv:

Janv,

Correction in your code:

for (int i = 0; i < p_sequencer.cfg.a_devices; i = i + 1)
begin
automatic int j = i;
fork
begin
a_seq[j] = wr_rd_random_v_seq::type_id::create($psprintf(“SEQ[%0d]”,j));
a_seq[j].start(p_sequencer.a_vseqr[j]);
end
join_none
end