Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HSA] increase cutoff size #53

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions lib/hsa/mcwamp_hsa.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@
#define USE_MD5_HASH (0)

// cutoff size used in FNV-1a hash function
// default set as 104, which is the larger value between HSA BrigModuleHeader
// and AMD GCN ISA header (Elf64_Ehdr) from Jack's research
#define FNV1A_CUTOFF_SIZE (104)
// default set as 512 to avoid identical common prefix of kernels
#define FNV1A_CUTOFF_SIZE (512)

static const char* getHSAErrorString(hsa_status_t s) {

Expand Down