Sophie

Sophie

distrib > Mageia > 1 > i586 > by-pkgid > d92aa75c2d384ff9f513aed09a46f703 > files > 536

parrot-doc-3.1.0-2.mga1.i586.rpm

#! perl
# Copyright (C) 2001-2007, Parrot Foundation.

=head1 NAME

examples/benchmarks/stress1.pl - GC stress-testing

=head1 SYNOPSIS

    % time perl examples/benchmarks/stress1.pl

=head1 DESCRIPTION

Creates 500 arrays with 20000 elements each.

=cut

use strict;
use warnings;

foreach ( 1 .. 10 ) {
    my @arr;
    foreach ( 1 .. 10 ) {
        $arr[$_] = buildarray();
    }

    my @arr1;
    foreach ( 1 .. 20 ) {
        $arr1[$_] = buildarray();
    }

    my @arr2;
    foreach ( 1 .. 20 ) {
        $arr2[$_] = buildarray();
    }
}

sub buildarray {
    my @foo;
    foreach ( 1 .. 20000 ) {
        $foo[$_] = $_;
    }
    return \@foo;
}

=head1 SEE ALSO

F<examples/benchmarks/stress.pasm>,
F<examples/benchmarks/stress.pl>,
F<examples/benchmarks/stress1.pasm>,
F<examples/benchmarks/stress2.pasm>,
F<examples/benchmarks/stress2.pl>,
F<examples/benchmarks/stress3.pasm>.

=cut

# Local Variables:
#   mode: cperl
#   cperl-indent-level: 4
#   fill-column: 100
# End:
# vim: expandtab shiftwidth=4: