wiki:user_applications

Version 1 (modified by alain, 9 years ago) (diff)

--

GIET_VM / User Applications

The following applications use the GIET_VM system calls? and user libraries. The multi-threaded applications have been designed to analyse the TSAR manycore architecture scalability.

Display

This mono-processor application read a stream of images (128 lines * 128 pixels / 1 byte per pixel), from a file on a FAT32 disk controller, and display it interactively on the frame buffer. The images.raw file available in the application directory contains 20 images. This application can be used to test peripherals such as block devices, frame buffer, and dynamic allocation of TTY terminals.

The source code can be found here.

Transpose

This multi-threaded application read a stream of images (128 lines * 128 pixels), transpose it (X <-> Y), and display it on the frame buffer. It can run on a multi-processors, multi-clusters architecture, with one thread per processor. The input and output buffers containing the image are distributed in all clusters.

The number of clusters must be a power of 2 no larger than 32 The number of processors per cluster must be a power of 2 no larger than 4

For each image the application makes a self test (checksum for each line). The actual display on the frame buffer depends on frame buffer availability.

The source code can be found here.

Convol

Classif