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.
Add acc_config. FIX seg fault for long_seg_count reset
- Loading branch information
Showing
5 changed files
with
69 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"//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": 507376000, | ||
"max_total_n": 2536880000, | ||
"max_read": 253688, | ||
"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, | ||
"short_griddim": 16128, | ||
"long_griddim": 2016, | ||
"mid_griddim": 16128 | ||
} | ||
} |
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