The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

PDL::Internals - description of the current internals

DESCRIPTION

Intro

This document explains various aspects of the current implementation of PDL. If you just want to use PDL for something, you definitely do not need to read this. Even if you want to interface your C routines to PDL or create new PDL::PP functions, you do not need to read this (though it may be informative). This document is primarily intended for people interested in debugging or changing the internals of PDL. To read this, a good understanding of the C language and programming and data structures in general is required, as well as some perl understanding. If you read through this document and understand all of it and are able to point what any part of this document refers to in the PDL core sources and additionally struggle to understand PDL::PP, you will be awarded the title "PDL Guru" (of course, the current version of this document is so incomplete that this is not yet the case).

Warning: If it seems that this document has gotten out of date, please inform the PerlDL developers email list (address in the README file) about it. This may well happen.

Piddles

Currently, a pdl data object is a hash ref which contains the element PDL, which is a pointer to a pdl structure, as well as some other fields. The file Core.pm uses some of these fields and the file pdlhash.c converts these to C when necessary.

The pdl struct is defined in pdl.h and the meanings of the fields are

magicno

A magic number, used to check whether something really is a piddle when debugging.

state

Various flags about the state of the pdl, such as whether the parents of this pdl have been altered at some point.

trans

Where this pdl was obtained from. This pointer may be null, in which case this pdl is not getting any dataflow from anywhere. Note, however that being non-null does not mean that data is flowing:

        $a = pdl 2,3,4; $b = pdl 4,5,6;
        $c = $a + $b;     # Note: no dataflow (not asked for)

here, the trans field in $c contains a pointer to a transformation. Only when $a or $b is changed, is the transformation destroyed and the field cleared. To see whether data is flowing, check the flags field of the trans struct.

vafftrans

This is intended for speeding up e.g. the chaining of affine transformations. See pdlapi.c for the code handling this. Also, slices.pd defines some things with / for this.

sv

Pointer to the hash object. May be null if this pdl does not have a perl counterpart.

datasv, data

The field datasv is a pointer to the perl SV containing the data string. These may be null before the pdl is finally physicalized.

nvals

How many values there are in data

datatype

The type of the data stored in the data vector.

dims, ndims

The dimensions of this pdl. Remember to physicalize the pdl before using.

dimincs

As an optimization, an increment for each dimension is stored here. In contrast to previous alpha versions, these are required to correspond exactly do dims. If you want to optimize for affine transformations, use the trans or vtrans.

threadids, nthreadids

This is where the threading tags are stored. The way this works is that ndims and dims hold all dimensions of the pdl, including threaded dimensions. The real dimensions of the pdl extend from 0 to threadids[0]-1, the thread dimensions with id 0 extend from threadids[0] to threadids[1]-1 and the thread dimensions with the last id extend from threadids[nthreadids-1] to threadids[nthreadids]-1. For example, if a pdl has dimensions (2,3,4,5) (= 120 elements) and nthreadids==2 and threadids={1,3,4}, there is one "real" dimensions with size 2, two dimensions with threadid 0 (3 and 4) and the dimensions with size 5 has threadid 1.

progenitor, future_me

See the section on families below

children

The children of this pdl i.e. where data is flowing to from this pdl.

living_for

XXX Not quite clear right now. Has to do with families

def_*

To avoid mallocs, there is a suitable amount of space already allocated for each pointer in this pdl, with the ideology that if you have more than six-dimensional data you must be willing to settle for a little more overhead.

magic

If this pdl is magical (e.g. if it is bound to something), this pointer is non-null and you must call the appropriate magic-handling routines when using the pdl.

hdrsv

A ``header'' SV * that can be set and accessed from outside. Can be used to include any perl object in a piddle.

Transformations

Each transformation has a virtual table which contains various information about that transformation. Usually transformations are generated with PDL::PP so it's better to see that documentation.

Freeing

Currently, not much is freed, especially when dataflow is done. This is bound to change pretty soon.

Threading

The file pdlthread.c handles most of the threading matters. The threading is encapsulated in the structure pdlthread.h.

AUTHOR

Copyright(C) 1997 Tuomas J. Lukka (lukka@fas.harvard.edu). Redistribution in the same form is allowed but reprinting requires a permission from the author.

1 POD Error

The following errors were encountered while parsing the POD:

Around line 142:

You forgot a '=back' before '=head2'