Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > cd14cddf3b3ceaf1193157472227757a > files > 578

parrot-doc-1.6.0-1mdv2010.0.i586.rpm

#! perl
# Copyright (C) 2001-2007, Parrot Foundation.
# $Id: stress1.pl 37201 2009-03-08 12:07:48Z fperrad $

=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: