blob: 00d3695b366e1c7a9c06ffad97fd30b8508f9d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Needleman-Wunsch (NW)
Compilation instructions
make
Execution instructions
./needle 46080 10
Note: This program generate two sequences randomly. Please specify your own sequences for different uses.
At the current stage, the program only supports two sequences with the same lengh, which can be divided by 16.
Usage: needle 32 10
32 //the length of both sequences
10 //penalty value
******Adjustable work group size*****
RD_WG_SIZE_0 or RD_WG_SIZE_0_0
USAGE:
make clean
make KERNEL_DIM="-DRD_WG_SIZE_0=16"
|