use strict; use List::Util qw(shuffle); use Parallel::ForkManager; my $multi_cpu_num = 2; my @chars_1 = split '', 'ACTCTGCATGCATACGCATCAGCATCAT'; my @chars_2 = split '', 'TAGCTCATGTCGATGCATGCTCGTCTCG'; my $pm = Parallel::ForkManager->new( $multi_cpu_num ); PWM: for my $pwm (1..5) { $pm->start and next PWM; my @chars_1_temp = shuffle @chars_1; my @chars_2_temp = shuffle @chars_2; print "this is $pwm....\n"; print join '',@chars_1_temp,"\n"; print join '',@chars_2_temp,"\n"; $pm->finish; } $pm->wait_all_children;
I tried to use the above code to generate 5 different paired sequences using 2 CPU. But the result was only one paired sequences generated, the other four were cloned paired without shuffle. They were identical each other. I expected those five paired sequences were different. Why? If I do not use Parallel::ForkManager module, then everything is OK.

In reply to shuffle in Parallel::ForkManager; by plagent

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.