-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel' of github.com:TurakhiaLab/DP-HLS into devel
- Loading branch information
Showing
6 changed files
with
89 additions
and
53 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
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 |
---|---|---|
|
@@ -15,16 +15,18 @@ | |
#define LAYER_MAXIMIUM 1 // We need to indicate from which layer (main matrix) is the maximum score stored. | ||
|
||
#define BANDING RECTANGULAR | ||
#define NO_TRACEBACK | ||
#define SCORED | ||
|
||
// Primitive Types | ||
typedef ap_fixed<32, 12> type_t; // Scores Type <width, integer_width> | ||
typedef ap_fixed<48, 22> type_t; // Scores Type <width, integer_width> | ||
typedef ap_uint<2> char_t; // Sequence Alphabet | ||
typedef short idx_t; // Indexing Type, could be much less than 32. ap_uint<8> | ||
typedef ap_int<16> idx_t; // Indexing Type, could be much less than 32. ap_uint<8> | ||
typedef ap_uint<4> tbp_t; // Traceback Pointer Type | ||
|
||
// Defien upper and lower bound for score type, aka type_t | ||
#define INF 1024 | ||
#define NINF -1024 | ||
#define INF 1048576 | ||
#define NINF -1048576 | ||
|
||
// Legacy Debugger Configuration | ||
#define DEBUG_OUTPUT_PATH "/home/[email protected]/DP-HLS-Debug/global_affine/" | ||
|
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