forked from lh3/minimap2
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update throughput calculation, a6000 config
- Loading branch information
Showing
10 changed files
with
126 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"//config is for": "aac cloud. Fits one batch + 5% x 4 long buffer avg_read_n 10k", | ||
"num_streams": 1, | ||
"min_n": 512, | ||
"//min_n": "queries with less anchors will be handled on cpu", | ||
"long_seg_buffer_size": 258880000, | ||
"max_total_n": 893440000, | ||
"max_read": 893440, | ||
"avg_read_n": 20000, | ||
"//avg_read_n": "expect average number of anchors per read, not used if max_total_n and max_read are specified", | ||
"range_kernel": { | ||
"blockdim": 512, | ||
"cut_check_anchors": 10, | ||
"//cut_check_anchors": "Number of anchors to check to attemp a cut", | ||
"anchor_per_block": 32768, | ||
"//anchor_per_block": "Number of anchors each block handle. Must be int * blockdim" | ||
}, | ||
"score_kernel": { | ||
"short_blockdim": 64, | ||
"long_blockdim": 64, | ||
"mid_blockdim": 64, | ||
"//blockdim config": "options are not used: static config specified at compile time (make ... LONG_BLOCK_SIZE=1024)", | ||
"short_griddim": 2688, | ||
"long_griddim": 1024, | ||
"mid_griddim": 2688 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
|
||
make clean | ||
make MICRO_BATCH=4 GPU=NV GPU_CONFIG=a6000_config.json SHORT_BLOCK_SIZE=32 LONG_BLOCK_SIZE=1024 MID_BLOCK_SIZE=512 MID_CUT=1 LONG_CUT=100 DEBUG_ANALYSIS=1 | ||
./minimap2 -t 1 --max-chain-skip=2147483647 data/hg38.mmi data/random_500MBases_90kto100k.fa #--gpu-chain |