1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624
|
# This file provides a class that parses the Code -member
# of the PDL::PP code.
#
# This is what makes the nice loops go around etc.
use strict;
package PDL::PP::Code;
use Carp;
sub get_pdls {my($this) = @_; return ($this->{ParNames},$this->{ParObjs});}
# Do the appropriate substitutions in the code.
sub new { my($type,$code,$parnames,$parobjs,$indobjs,$generictypes,
$extrageneric,$havethreading, $dont_add_thrloop) = @_;
# C++ style comments
#
# This regexp isn't perfect because it doesn't cope with
# literal string constants.
#
$code =~ s,//.*?\n,,g;
if($::PP_VERBOSE) {
if($dont_add_thrloop) {
print "DONT_ADD_THRLOOP!\n";
}
print "EXTRAGEN: $extrageneric ",%$extrageneric,"\n";
print "ParNAMES: ",(join ',',@$parnames),"\n";
print "GENTYPES: ", @$generictypes, "\n";
}
my $sizeprivs = {};
my($this) = bless {
IndObjs => $indobjs,
ParNames => $parnames,
ParObjs => $parobjs,
Gencurtype => [], # stack to hold GenType in generic loops
},$type;
$_ = "{".
(join '',map {$_->get_incregisters();} (values %{$this->{ParObjs}})).
"$code}";
# First, separate the code into an array of C fragments (strings),
# variable references (strings starting with $) and
# loops (array references, 1. item = variable.
my $coderef = new PDL::PP::Block;
my @stack = ($coderef);
my $control;
my $threadloops = 0;
while($_) {
# Parse next statement
s/^(.*?) # First, some noise is allowed. This may be bad.
( \$[a-zA-Z_]+\s*\([^)]*\) # $a(...): access
|\bloop\s*\([^)]+\)\s*%{ # loop(..) %{
|\btypes\s*\([^)]+\)\s*%{ # types(..) %{
|\bthreadloop\s*%{ # threadloop %{
|%} # %}
|$)//xs
or confess("Invalid program $_");
$control = $2;
# Store the user code.
# Some day we shall parse everything.
push @{$stack[-1]},$1;
# Then, our control.
if($control) {
if($control =~ /^loop\s*\(([^)]+)\)\s*%{/) {
my $ob = new PDL::PP::Loop([split ',',$1],
$sizeprivs,$this);
print "SIZEPRIVSXX: $sizeprivs,",(join ',',%$sizeprivs),"\n" if $::PP_VERBOSE;
push @{$stack[-1]},$ob;
push @stack,$ob;
} elsif($control =~ /^types\s*\(([^)]+)\)\s*%{/) {
my $ob = new PDL::PP::Types($1);
push @{$stack[-1]},$ob;
push @stack,$ob;
} elsif($control =~ /^threadloop\s*%{/) {
my $ob = new PDL::PP::ThreadLoop();
push @{$stack[-1]},$ob;
push @stack,$ob;
$threadloops ++;
} elsif($control =~ /^\$[a-zA-Z_]+\s*\([^)]*\)/) {
push @{$stack[-1]},new PDL::PP::Access($control,$this);
} elsif($control =~ /^%}/) {
pop @stack;
} else {
confess("Invalid control: $control\n");
}
} else {
print("No \$2!\n") if $::PP_VERBOSE;
}
}
print "SIZEPRIVSX: ",(join ',',%$sizeprivs),"\n" if $::PP_VERBOSE;
# Now, if there is no explicit threadlooping in the code,
# enclose everything into it.
if(!$threadloops && !$dont_add_thrloop && $havethreading) {
print "Adding threadloop...\n" if $::PP_VERBOSE;
my $nc = $coderef;
$coderef = new PDL::PP::ThreadLoop();
push @{$coderef},$nc;
}
# Enclose it all in a genericloop.
{
# XXX Make genericloop understand denied pointers;...
my $nc = $coderef;
$coderef = new PDL::PP::GenericLoop($generictypes,"",
[grep {!$extrageneric->{$_}} @$parnames],'$PRIV(__datatype)');
push @{$coderef},$nc;
}
# Do we have extra generic loops?
# If we do, first reverse the hash:
my %glh;
for(keys %$extrageneric) {
push @{$glh{$extrageneric->{$_}}},$_;
}
my $no = 0;
for(keys %glh) {
my $nc = $coderef;
$coderef = new PDL::PP::GenericLoop($generictypes,$no++,
$glh{$_},$_);
push @$coderef,$nc;
}
# Then, in this form, put it together what we want the code to actually do.
print "SIZEPRIVS: ",(join ',',%$sizeprivs),"\n" if $::PP_VERBOSE;
$this->{Code} = "{".(join '',values %$sizeprivs).
$coderef->get_str($this,[])
."}";
$this->{Code};
}
# This sub determines the index name for this index.
# For example, a(x,y) and x0 becomes [x,x0]
sub make_loopind { my($this,$ind) = @_;
my $orig = $ind;
while(!$this->{IndObjs}{$ind}) {
if(!((chop $ind) =~ /[0-9]/)) {
confess("Index not found for $_ ($ind)!\n");
}
}
return [$ind,$orig];
}
#####################################################################
#
# Encapsulate the parsing code objects
#
# All objects have two methods:
# new - constructor
# get_str - get the string to be put into the xsub.
###########################
#
# Encapsulate a block
package PDL::PP::Block;
sub new { my($type) = @_; bless [],$type; }
sub myoffs { return 0; }
sub myprelude {}
sub myitem {return "";}
sub mypostlude {}
sub get_str {my ($this,$parent,$context) = @_;
my $str = $this->myprelude($parent,$context);
my $it; my $nth=0;
MYLOOP: while(1) {
$it = $this->myitem($parent,$nth);
if($nth && !$it) {last MYLOOP}
$str .= $it;
$str .= (join '',map {ref $_ ? $_->get_str($parent,$context) : $_}
@{$this}[$this->myoffs()..$#{$this}]);
$nth ++;
}
$str .= $this->mypostlude($parent,$context);
$str;
}
###########################
#
# Encapsulate a loop
package PDL::PP::Loop;
@PDL::PP::Loop::ISA = "PDL::PP::Block";
sub new { my($type,$args,$sizeprivs,$parent) = @_;
my $this = bless [$args],$type;
for(@{$this->[0]}) {
print "SIZP $sizeprivs, $_\n" if $::PP_VERBOSE;
my $i = $parent->make_loopind($_);
$sizeprivs->{$i->[0]} =
"register int __$i->[0]_size = \$PRIV(__$i->[0]_size);\n";
print "SP :",(join ',',%$sizeprivs),"\n" if $::PP_VERBOSE;
}
return $this;
}
sub myoffs { return 1; }
sub myprelude { my($this,$parent,$context) = @_;
my $text = ""; my $i;
push @$context, map {
$i = $parent->make_loopind($_);
# Used to be $PRIV(.._size) but now we have it in a register.
$text .= "{/* Open $_ */ register int $_;
for($_=0; $_<(__$i->[0]_size); $_++) {";
$i;
} @{$this->[0]};
return $text;
}
sub mypostlude { my($this,$parent,$context) = @_;
splice @$context, - ($#{$this->[0]}+1);
return join '',map {"}} /* Close $_ */"} @{$this->[0]};
}
###########################
#
# Encapsulate a generic type loop
package PDL::PP::GenericLoop;
@PDL::PP::GenericLoop::ISA = "PDL::PP::Block";
# Types: BSULFD,
sub new { my($type,$types,$name,$varnames,$whattype) = @_;
bless [(PDL::PP::get_generictyperecs($types)),$name,$varnames,
$whattype],$type;
}
sub myoffs {4}
sub myprelude { my($this,$parent,$context) = @_;
push @{$parent->{Gencurtype}},'PDL_undef'; # so that $GENERIC can get at it
"/* Start generic loop */\n".
(join '',map{
"#undef THISIS$this->[1]_$_\n#define THISIS$this->[1]_$_(a)\n"
}(qw/B S U L F D/)).
"\tswitch($this->[3]) { case -42: /* Warning eater */ {1;\n";
}
sub myitem { my($this,$parent,$nth) = @_;
# print "GENERICITEM\n";
my $item = $this->[0]->[$nth];
if(!$item) {return "";}
$parent->{Gencurtype}->[-1] = $item->[1];
"\t} break; case $item->[0]: {\n".
(join '',map {
"#undef THISIS$this->[1]_$_\n#define THISIS$this->[1]_$_(a)\n";
}(qw/B S U L F D/)).
"#undef THISIS$this->[1]_$item->[3]\n#define THISIS$this->[1]_$item->[3](a) a\n".
(join '',map{
# print "DAPAT: '$_'\n";
$parent->{ParObjs}{$_}->get_xsdatapdecl($item->[1]);
} (@{$this->[2]})) ;
}
sub mypostlude { my($this,$parent,$context) = @_;
pop @{$parent->{Gencurtype}}; # and clean up the Gentype stack
"\tbreak;}
default:barf(\"PP INTERNAL ERROR! PLEASE MAKE A BUG REPORT\\n\");}\n";
}
###########################
#
# Encapsulate a threadloop.
# There are several different
package PDL::PP::ThreadLoop;
sub new {
return PDL::PP::ComplexThreadLoop->new(@_);
}
package PDL::PP::SimpleThreadLoop;
use Carp;
@PDL::PP::SimpleThreadLoop::ISA = "PDL::PP::Block";
sub new { my($type) = @_; bless [],$type; }
sub myoffs { return 0; }
sub myprelude {my($this,$parent,$context) = @_;
my $no;
my ($ord,$pdls) = $parent->get_pdls();
' /* THREADLOOPBEGIN */
if(PDL->startthreadloop(&($PRIV(__pdlthread)),$PRIV(vtable)->readdata,
__privtrans))) return;
do {
'.(join '',map {"${_}_datap += \$PRIV(__pdlthread).offs[".(0+$no++)."];\n"}
@$ord).'
';
}
sub mypostlude {my($this,$parent,$context) = @_;
my $no;
my ($ord,$pdls) = $parent->get_pdls();
' /* THREADLOOPEND */
'.(join '',map {"${_}_datap -= \$PRIV(__pdlthread).offs[".(0+$no++)."];\n"}
@$ord).'
} while(PDL->iterthreadloop(&$PRIV(__pdlthread),0));
'
}
####
#
# This relies on PP.pm making sure that initthreadloop always sets
# up the two first dimensions even when they are not necessary.
#
package PDL::PP::ComplexThreadLoop;
use Carp;
@PDL::PP::ComplexThreadLoop::ISA = "PDL::PP::Block";
sub new { my($type) = @_; bless [],$type; }
sub myoffs { return 0; }
sub myprelude {my($this,$parent,$context) = @_;
my $no; my $no2=-1; my $no3=-1;
my ($ord,$pdls) = $parent->get_pdls();
' /* THREADLOOPBEGIN */
if(PDL->startthreadloop(&($PRIV(__pdlthread)),$PRIV(vtable)->readdata,
__tr)) return;
do { register int __tind1=0,__tind2=0;
register int __tnpdls = $PRIV(__pdlthread).npdls;
register int __tdims1 = $PRIV(__pdlthread.dims[1]);
register int __tdims0 = $PRIV(__pdlthread.dims[0]);
register int *__offsp = PDL->get_threadoffsp(&$PRIV(__pdlthread));
'.(join '',map {$no2++;
"register int __tinc0_".($no2)." = \$PRIV(__pdlthread).incs[$no2];"}
@$ord).
(join '',map {$no3++;
"register int __tinc1_".($no3)." = \$PRIV(__pdlthread).incs[__tnpdls+$no3];"}
@$ord).
(join '',map {"${_}_datap += __offsp[".(0+$no++)."];\n"}
@$ord).'
for(__tind2=0; __tind2<__tdims1 ; __tind2++) {
for(__tind1=0; __tind1<__tdims0 ; __tind1++) {
/* This is the tightest threadloop. Make sure inside is optimal. */
';
}
# Should possibly fold out thread.dims[0] and [1].
sub mypostlude {my($this,$parent,$context) = @_;
my $no; my $no0; my $no1; my $no2; my $no3; my $no4; my $no5;
my ($ord,$pdls) = $parent->get_pdls();
' /* THREADLOOPEND */
'.(join '',map {"${_}_datap += __tinc0_".(0+$no0++).";\n"}
@$ord).'
} '
.(join '',map {"${_}_datap += __tinc1_".(0+$no1++)."
- __tinc0_".(0+$no2++)." *
__tdims0;\n"}
@$ord).'
} '.
(join '',map {"${_}_datap -= __tinc1_".(0+$no3++)." *
__tdims1;"}
@$ord).'
'.(join '',map {"${_}_datap -= \$PRIV(__pdlthread).offs[".(0+$no++)."];\n"}
@$ord).'
} while(PDL->iterthreadloop(&$PRIV(__pdlthread),2));
'
}
###########################
#
# Encapsulate a types() switch
package PDL::PP::Types;
use Carp;
@PDL::PP::Types::ISA = "PDL::PP::Block";
sub new { my($type,$ts) = @_;
$ts =~ /[BSULFD]+/ or confess "Invalid type access with '$ts'!";
bless [$ts],$type; }
sub myoffs { return 1; }
sub myprelude {my($this,$parent,$context) = @_;
"\n#if ". (join '||',map {"(THISIS_$_(1)+0)"} split '',$this->[0])."\n";
}
sub mypostlude {my($this,$parent,$context) = @_;
"\n#endif\n"
}
###########################
#
# Encapsulate an access
package PDL::PP::Access;
use Carp;
sub new { my($type,$str,$parent) = @_;
$str =~ /^\$([a-zA-Z_]+)\s*\(([^)]*)\)/ or
confess ("Access wrong: '$str'\n");
my($pdl,$inds) = ($1,$2);
if($pdl =~ /^T/) {new PDL::PP::MacroAccess($pdl,$inds);}
elsif($pdl =~ /^P$/) {new PDL::PP::PointerAccess($pdl,$inds);}
elsif($pdl =~ /^PP$/) {new PDL::PP::PhysPointerAccess($pdl,$inds);}
elsif($pdl =~ /^SIZE$/) {new PDL::PP::SizeAccess($pdl,$inds);}
elsif($pdl =~ /^RESIZE$/) {new PDL::PP::ReSizeAccess($pdl,$inds);}
elsif($pdl =~ /^GENERIC$/) {new PDL::PP::GentypeAccess($pdl,$inds);}
elsif($pdl =~ /^PDL$/) {new PDL::PP::PdlAccess($pdl,$inds);}
elsif(!defined $parent->{ParObjs}{$pdl}) {new PDL::PP::OtherAccess($pdl,$inds);}
else {
bless [$pdl,$inds],$type;
}
}
sub get_str { my($this,$parent,$context) = @_;
# print "AC: $this->[0]\n";
$parent->{ParObjs}{$this->[0]}->do_access($this->[1],$context)
if defined($parent->{ParObjs}{$this->[0]});
}
###########################
#
# Just some other substituted thing.
package PDL::PP::OtherAccess;
sub new { my($type,$pdl,$inds) = @_; bless [$pdl,$inds],$type; }
sub get_str {my($this) = @_;return "\$$this->[0]($this->[1])"}
###########################
#
# Encapsulate a Pointeraccess
package PDL::PP::PointerAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
croak ("can't access undefined pdl ".$this->[0])
unless defined($parent->{ParObjs}{$this->[0]});
# $parent->{ParObjs}{$this->[0]}->{FlagPaccess} = 1;
$parent->{ParObjs}{$this->[0]}->{FlagPhys} = 1;
$parent->{ParObjs}{$this->[0]}->do_pointeraccess();
}
###########################
#
# Encapsulate a PhysPointeraccess
package PDL::PP::PhysPointerAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
$parent->{ParObjs}{$this->[0]}->do_physpointeraccess()
if defined($parent->{ParObjs}{$this->[0]});
}
###########################
#
# Encapsulate a PDLaccess
package PDL::PP::PdlAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
croak ("can't access undefined pdl ".$this->[0])
unless defined($parent->{ParObjs}{$this->[0]});
$parent->{ParObjs}{$this->[0]}->do_pdlaccess();
}
###########################
#
# Encapsulate a macroaccess
package PDL::PP::MacroAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$pdl,$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
my ($pdl,$inds) = @{$this};
$pdl =~ /T([BSULFD]+)/ or confess("Macroaccess wrong: $pdl\n");
my @lst = split ',',$inds;
my @ilst = split '',$1;
if($#lst != $#ilst) {confess("Macroaccess: different nos of args $pdl $inds\n");}
croak "generic type access outside a generic loop"
unless defined $parent->{Gencurtype}->[-1];
my $type = $parent->{Gencurtype}->[-1];
croak "unknown Type" unless $type =~ /^PDL_([BSULFD])/;
$type = $1;
for (0..$#lst) {
return "$lst[$_]" if $ilst[$_] =~ /$type/;
}
# return join ' ',map {
# "THISIS_$ilst[$_]($lst[$_])"
# } (0..$#lst) ;
}
###########################
#
# Encapsulate a SizeAccess
package PDL::PP::SizeAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
croak "can't get SIZE of undefined dimension $this->[0]"
unless defined($parent->{IndObjs}{$this->[0]});
$parent->{IndObjs}{$this->[0]}->get_size();
}
###########################
#
# Encapsulate a ReSizeAccess
package PDL::PP::ReSizeAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
$this->[0] =~ /^([^,]+),([^,]+)$/ or
croak "Can't interpret resize str $this->[0]";
croak "can't RESIZE undefined dimension $1"
unless defined($parent->{IndObjs}{$1});
my $s = $parent->{IndObjs}{$1}->get_size();
# XXX NOTE: All piddles must be output piddles, there must not be
# a loop over this var (at all!) etc. Should check for these,
# this is why not yet documented.
# FURTHER NOTE: RESIZE DOESN'T COPY DATA PROPERLY!
my($ord,$pdls) = $parent->get_pdls();
my @p;
for(@$ord) {
push @p, $_
if $pdls->{$_}->has_dim($1);
}
print "RESIZEACC: $1 $2, (",(join ',',@p),")\n";
warn "RESIZE USED: DO YOU KNOW WHAT YOU ARE DOING???\n";
return "$s = $2; ".(join '',map {$pdls->{$_}->do_resize($1,$2)} @p);
}
###########################
#
# Encapsulate a GentypeAccess
package PDL::PP::GentypeAccess;
use Carp;
sub new { my($type,$pdl,$inds) = @_; bless [$inds],$type; }
sub get_str {my($this,$parent,$context) = @_;
croak "generic type access outside a generic loop"
unless defined $parent->{Gencurtype}->[-1];
my $type = $parent->{Gencurtype}->[-1];
if ($this->[0]) {
croak "not a defined name"
unless defined($parent->{ParObjs}{$this->[0]});
$type = $parent->{ParObjs}{$this->[0]}->ctype($type);
}
return $type;
}
########################
#
# Type coercion
#
# Now, if TYPES:F given and double arguments, will coerce.
package PDL::PP::TypeConv;
sub print_xscoerce { my($this) = @_;
$this->printxs("\t__priv->datatype=PDL_B;\n");
# First, go through all the types, selecting the most general.
for(@{$this->{PdlOrder}}) {
$this->printxs($this->{Pdls}{$_}->get_xsdatatypetest());
}
# See which types we are allowed to use.
$this->printxs("\tif(0) {}\n");
for(@{$this->get_generictypes()}) {
$this->printxs("\telse if(__priv->datatype <= $_->[2]) __priv->datatype = $_->[2];\n");
}
$this->{Types} =~ /F/ and (
$this->printxs("\telse if(__priv->datatype == PDL_D) {__priv->datatype = PDL_F; /* Cast double to float */}\n"));
$this->printxs("\telse {croak(\"Too high type %d given!\\n\",__priv->datatype);}");
# Then, coerce everything to this type.
for(@{$this->{PdlOrder}}) {
$this->printxs($this->{Pdls}{$_}->get_xscoerce());
}
}
# XXX Should use PDL::Core::Dev;
no strict 'vars';
# STATIC!
sub PDL::PP::get_generictyperecs { my($types) = @_;
my $foo;
return [map {$foo = $_;
( grep {/$foo->[0]/} (@$types) ) ?
["PDL_".($_->[0]eq"U"?"US":$_->[0]),$_->[1],$_->[2],$_->[0]]
: ()
}
(["B","PDL_Byte",$PDL_B],
["S","PDL_Short",$PDL_S],
["U","PDL_Ushort",$PDL_US],
["L","PDL_Long",$PDL_L],
["F","PDL_Float",$PDL_F],
["D","PDL_Double",$PDL_D])];
}
sub xxx_get_generictypes { my($this) = @_;
return [map {
$this->{Types} =~ /$_->[0]/ ? ["PDL_".($_->[0]eq"U"?"US":$_->[0]),$_->[1],$_->[2],$_->[0]] : ()
}
(["B","PDL_Byte",$PDL_B],
["S","PDL_Short",$PDL_S],
["U","PDL_Ushort",$PDL_US],
["L","PDL_Long",$PDL_L],
["F","PDL_Float",$PDL_F],
["D","PDL_Double",$PDL_D])];
}
|