Mercurial > hg > Game > Cerium
annotate example/regex_mas/WordCount.h @ 1699:0a70abda2ab6 draft
profile for gpu
author | kkb |
---|---|
date | Fri, 04 Oct 2013 20:05:17 +0900 |
parents | 0f94d9d580f9 |
children | 5a294d8e5643 |
rev | line source |
---|---|
1598 | 1 |
2 typedef struct wordCount { | |
3 struct wordCount *self; | |
4 int size; // remaining file size | |
5 int division_size; // for each word count task | |
6 int division_out_size; | |
7 int out_size; | |
8 int task_num; // remaining task count | |
9 int task_blocks; // spawn task one at a time | |
10 int status_num; | |
11 int task_spwaned; | |
12 unsigned long long *o_data; | |
13 unsigned long long *head_tail_flag; | |
14 int out_task_num; | |
15 int pad; | |
16 char * file_mmap; | |
17 int file_size; | |
18 HTaskPtr t_print; | |
19 } WordCount; | |
20 |