Microchip® Advanced Software Framework

 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Benchmark Helper Script

This script is used to workbench a program, without any intervention. Once it is well configured, it will automatically compile the program to evaluate, download it into the target, retrieves the data and computes them to extract the error information. It will store into an output file the cycle count this process took, the duration in seconds, the error average and the maximal error of the results.

To make this script works you will need a serial cable that you have to connect to the port COM1 of you PC. The other end of this cable has to be connected on the USART of the target.
To configure this script, edit the file "benchmark" and modify the values of the variables defines in the section "BENCH CONFIG".

You will need Data Get and group_dsplib_dataextract plus various standard UNIX tools.

Configuration

Constants

This is the definition of the constants used in the header file generated by this script in order to configure the C program to workbench.

Program

This is the definition of the parameters that permit computations according to the actual configuration of the C program.

Path

Important path used in the script.

Program's location

Specify the program's path from the $CUR_PATH directory.

Usage

./benchmark

C Program File Pattern

In order to make the script compatible with the C program, you should use this C program pattern to design your benchmark. This pattern works perfectly with the EVK1100 board.

#include <avr32/io.h>
#include "compiler.h"
#include "board.h"
#include "dsp.h"
#include "pm.h"
#include "count.h"
#include "bench_config.h"
int main(int argc, char *argv[])
{
unsigned int cycle_count;
// Switch to external Oscillator 0.
// Initialize the DSP debug module
dsp_debug_initialization(FOSC0);
// Get the actual cycle count
cycle_count = Get_sys_count();
// <<< Type here the code you need to workbench >>>
// Calculate the number of cycles
cycle_count = Get_sys_count() - cycle_count;
// Print the number of cycles
dsp16_debug_printf("Cycle count: %d\n", cycle_count);
// Print the output
// <<< use the functions dsp16_debug_print_vect, dsp32_debug_print_vect, dsp16_debug_print_complex_vect or
dsp32_debug_print_complex_vect >>>
while(1);
}

In this program you will have access to the constants you defined in the script file as parameters. Those constants are accessible by including the file "bench_config.h" Finally the program has to be compiled defining DSP_BENCH=1 and DSP_DEBUG=1.

The Scilab data comparison script

This is the file that contains the reference signal which should be the result of the output of the program to workbench. It serves to compare this reference signal with the actual output and permits to retrieve the error average and the maximal error of this output signal.
In this file you will just have to generate the signal you should receive with you C program. To do that you will have access to the constants you defined in the script file as parameters. The output signal must be store in the "y" variable and can be a real or a imaginary vector.
Here is an example for the FFT:

y_size = 2^NLOG;
t = 0:(y_size-1);
vect2_input = sin(2*%pi*4000*t/40000);
y = fft(vect2_input)/y_size;

The output

The resulting file of this benchmark is a text file containing all the workbench results. Each result is printed on 4 lines: the first line corresponds to the cycle count of the process, the next one is the duration of this process in second, the third is the error average of the result and the last, its maximal error. Then you can easily manage such a file using a spreadsheet.

Troubleshooting

The HyperTerminal is opened and so the application DataGet cannot open the COM port.

Close the HyperTerminal and rerun the script.

An error is generated by the Scilab data comparison script.

Check the error on the file "dsp_bench_temp" else try to launch this script manually with the required files.

An error occurred while compiling the program.

This might be due to an error on your C files. Compile it separately to check the error or look at the file ./dsp_bench_log.txt.

Information

All the files related to this module are located under /avr32/services/dsp/dsplib/utils/scripts/benchmark