Fix process_stage comment in pipeline_template

Use consistently E_{} notation to denote the computation done at a given
stage instead of a mix of Stage_{} and E_{}.
This commit is contained in:
Thomas Preud'homme 2013-04-17 18:04:46 +02:00
parent 552c06f295
commit 7bda1c8ced
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ struct timespec stage_time;
data_t result = 0;
/* $Stage_{i+1} (data_{j+1}) = E_i (data_{j+1}) + E_{i+1} (data_j)$ */
/* $E_{i+1} (data_{j+1}) = E_i (data_{j+1}) + E_{i+1} (data_j)$ */
void process_stage(data_t *prev_pipeline_stage, data_t *next_pipeline_stage)
{
long i;