Code covered by the BSD License  

Highlights from
MappedTensor class

5.0

5.0 | 1 rating Rate this file 4 Downloads (last 30 days) File Size: 26.3 KB File ID: #29694
image thumbnail

MappedTensor class

by Dylan Muir

 

13 Dec 2010 (Updated 09 Nov 2012)

Manages very large tensors of arbitrary dimensions as mapped files on disk; complex support.

| Watch this File

File Information
Description

This class transparently maps large tensors of arbitrary dimensions to temporary files on disk. Referencing is identical to a standard matlab tensor, so a MappedTensor can be passed into functions without requiring that the function be written specifically to use MappedTensors. This is opposed to memmapfile objects, which cannot be used in such a way. Being able to used MappedTensors as arguments requires that the tensor is indexed inside the function (as opposed to using the object with no indices). This implies that a function using a MappedTensor must not be fully vectorised, but must operate on the mapped tensor in segments inside a for loop.

MappedTensor also offers support for basic operations such as permute and sum, without requiring space for the tensor to be allocated in memory. memmapfile sometimes runs out of virtual addressing space, even if the data is stored only on disk. MappedTensor does not suffer from this problem.

Functions that work on every element of a tensor, with an output the same size as the input tensor, can be applied to a MappedTensor without requiring the entire tensor to be allocated in memory. This is done with the convenience function "SliceFunction".

An existing binary file can also be mapped, similarly to memmapfile. However, memmapfile offers more flexibility in terms of file format. MappedTensors transparently support complex numbers, which is an advantage over memmapfile.

Example:
mtVar = MappedTensor(500, 500, 1000, 'Class', 'single');
% A new tensor is created, 500x500x1000 of class 'single'.
% A temporary file is generated on disk to contain the data for this tensor.

for (i = 1:1000)
   mtVar(:, :, i) = rand(500, 500);
   mtVar(:, :, i) = abs(fft(mtVar(:, :, i)));
end

mtVar = mtVar';

mtVar(3874)

mtVar(:, 1, 1)

mfSum = sum(mtVar, 3);
% The sum is performed without allocating space for mtVar in
% memory.

mtVar2 = SliceFunction(mtVar, @(m)(fft2(m), 3);
% 'fft2' will be applied to each Z-slice of mtVar
% in turn, with the result returned in the newly-created
% MappedTensor mtVar2.

clear mtVar mtVar2
% The temporary files are removed

mtVar = MappedTensor('DataDump.bin', 500, 500, 1000);
% The file 'DataDump.bin' is mapped to mtVar.

SliceFunction(mtVar, @()(randn(500, 500)), 3);
% "Slice assignment" is supported, by using "generator" functions that accept no arguments. The assignment occurs while only allocating space for a single tensor slice in memory.

mtVar = -mtVar;
mtVar = 5 + mtVar;
mtVar = 5 - mtVar;
mtVar = 12 .* mtVar;
mtVar = mtVar / 5;
% Unary and binary mathematical operations are supported, as long as they are performed with a scalar. Multiplication, division and negation take O(1) time; addition and subtraction take O(N) time.

MATLAB release MATLAB 7.8 (R2009a)
Tags for This File  
Everyone's Tags
class, complex, data import, hard drive, large tensor, mapped file, matrix, memmapfile, object oriented, oop
Tags I've Applied
Add New Tags Please login to tag files.
Please login to add a comment or rating.
Comments and Ratings (1)
06 Nov 2012 Stanislas Rapacchi  
Updates
14 Dec 2010

Added a brief example, more details of restrictions.

15 Dec 2010

Added support for "sum"; added SliceFunction.

21 Dec 2010

Fixed a bug in linear indexing of a permuted tensor; added support for slice assignment; added support for complex values.

23 Dec 2010

Added support for unary uplus, uminus; binary plus, minus, times, mtimes, m/l/r/divide (all with a scalar).

16 Aug 2011

Updated image

07 Nov 2011

Updated description

29 May 2012

MappedTensor now does not rely internally on memmapfile, but performs optimised direct binary file reads. It is now much faster than memmapfile, for some tasks. You can now specify a header offset to skip, when mapping an existing file.

31 May 2012

Accelerated SliceFunction; SliceFunction now provides a slice index argument; better error reporting when too many dimensions were used for indexing; SliceFunction now provides feedback during operation

09 Jul 2012

Fixed a referencing bug, where repeated indices and multi-dimensional indices were not referenced correctly on reads.

07 Aug 2012

MappedTensor now uses mex-accellerated internal functions, if possible. MappedTensor is now much faster.

25 Sep 2012

Minor bug fixes

09 Nov 2012

Fixed a regression, such that SliceFunction no longer worked. Thanks to Stanislas Rapacchi for the bug report.

Contact us