Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: aliasing arrays using typeglob under strict

by 7stud (Deacon)
on Feb 08, 2013 at 05:09 UTC ( [id://1017766]=note: print w/replies, xml ) Need Help??


in reply to aliasing arrays using typeglob under strict

...and the syntax advantages are clear.

Can you explain that? When I look at the following two functions, I can't see any syntax advantage:

sub fit_data { our @ydata; local *ydata = shift; print "array contains: ",join(",",@ydata)," \n"; print "last index is $#ydata \n"; };; sub fit_data { my @ydata = @{shift()}; print "array contains: ",join(",",@ydata)," \n"; print "last index is $#ydata \n"; }
Am I overlooking something?

Replies are listed 'Best First'.
Re^2: aliasing arrays using typeglob under strict
by tobyink (Canon) on Feb 08, 2013 at 06:41 UTC

    You're overlooking write access to the array.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
Re^2: aliasing arrays using typeglob under strict
by BrowserUk (Patriarch) on Feb 08, 2013 at 13:52 UTC
    Am I overlooking something?

    Yes. You are copying the entire array. What was the point of passing a reference?

    That's a very costly operation even for moderately large arrays, just to avoid indirecting through the reference.

    But if you can avoid indirect syntax for array and hashes, and avoid copying, and retaining read/write access; all for the cost of naming the argument; all achieved with no action at a distance -- everything is confined to the scope of the subroutine -- then I think that the "syntactic advantages" are clear.

    Try re-writing this without aliasing and it will either be much less clear syntactically; or vastly less efficient:

    sub mmMxM { our( @A, @B ); local( *A, *B ) = @_; my @C = map[0,0,0,0], 0..3; for my $i ( 0 .. 3 ) { for my $j ( 0 .. 3 ) { $C[$i][$j] += $A[$i][$_]*$B[$_][$j] for 0 .. 3; } } return \@C; }

    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.
      Try re-writing this without aliasing and it will either be much less clear syntactically; or vastly less efficient...

      BrowserUk operates in an environment in which it is vital to squeeze every last, living computron from any processor, algorithm or function with which he deals, so I am not inclined to dispute his assertion that indirect access is "vastly less efficient".

      I would argue with his assertion about clarity. This, of course, is very much a matter of personal taste; I'm not aware of any widely accepted metric for benchmarking 'clarity' – or even for defining its meaning! I would say that the (untested) way I have re-written  mmMxM() below is, to my taste, at least as clear as the original. (Again, all issues of performance are entirely neglected. And I don't understand what this thing is doing in the first place... some kind of matrix multiply?)

      use constant N => 3; sub mmMxM { my ($ar_A, # ref. to array of ... $ar_B, # ref. to array of ... ) = @_; my @c = map [ map 0, 0..N ], 0..N; # AoA of zeros for my $i (0..N) { for my $j (0..N) { $c[$i][$j] += $ar_A->[$i][$_] * $ar_B->[$_][$j] for 0..N; } } return \@c; }

      I have, believe me, the utmost respect for BrowserUk, a most subtle and puissant (that's puissant, not pissant!) monk whose programming boots I am not fit to lick clean, but I felt compelled to offer my USD0.02 on the subject of clarity.

        BrowserUk operates in an environment in which it is vital to squeeze every last, living computron from any processor, algorithm or function with which he deals, so I am not inclined to dispute his assertion that indirect access is "vastly less efficient".

        The "vastly less efficient" was in response *only* to 7stud's suggested: my @ydata = @{shift()};.

        Duplicating multiple, multi-dimensional arrays (in the case of mat mult), in order to achieve the same, non-indirected notation as you get with aliasing is "vastly less efficient".

        Taking that quote, out of that context, is a strawman.

        I would say that the (untested) way I have re-written mmMxM() below is, to my taste, at least as clear as the original.

        For this simple example, it's not horribly more complex I grant you. But that is the tip of the iceberg.

        Rather than this hard-coded sized, square-matrix multiply, let's take the more general form of MxN MatMult:

        sub mmMxN { our( @M, @N ); local( *M, *N ) = @_; die "Incompatible matrix dimensions" unless @M == @{ $N[0] }; my @C = map[ (0) x @M ], 0 .. $#{ $N[ 0 ] }; for my $i ( 0 .. $#M ) { for my $j ( 0 .. $#{ $N[0] } ) { $C[ $i ][ $j ] += $M[ $i ][ $_ ] * $N[ $_ ][ $j] for 0 .. + $#N; } } return \@C; }

        Now the indirect notation would take a somewhat higher cost on clarity.

        Now consider that this is a method within an OO module, and the matrices in question are named instance variables in the object:

        sub mmMxN { my $self = shift; die "Incompatible matrix dimensions" unless @{ $self->{M} } == @{ +$self->{N}->[0] }; $self->{R} = map[ (0) x @{ $self->{M} } ], 0 .. $#{ $self->{N}->[ +0 ] }; for my $i ( 0 .. $#{ $self->{M} } ) { for my $j ( 0 .. $#{ $self->{N}->[0] } ) { $self->{R}->[$i]->[$j] += $self->{M}->[$i]->[$_] * $self-> +{N}->[$_]->[$j] for 0 .. $#{ $self->{N} }; } } return $self->{R}; }

        Yes, you can use temporaries for the array refs; and I've also exaggerated the syntax problem for effect, but even without that, this is preferable:

        sub mmMxN { our ( @M, @N ); my $self = shift; local( *M, *N ) = @{ $self }{ M, N }; die "Incompatible matrix dimensions" unless @{ $M } == @{ $N[0] }; my @R = map[ (0) x @M ], 0 .. $#N[ 0 ]; for my $i ( 0 .. $#M ) { for my $j ( 0 .. $#{ $N[0] } ) { $R[$i][$j] += $M[$i][$_] * $N[$_][$j] for 0 .. $#N; } } $self->{R} = \@R; }

        (IMO anyway :)

        PS. See also The seven good uses for local.


        With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
        Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
        "Science is about questioning the status quo. Questioning authority".
        In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1017766]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-20 02:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found