diff options
| author | Tim Rogers <[email protected]> | 2021-01-27 11:19:31 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-27 11:19:31 -0500 |
| commit | 29cce50780ee191999faff33841562e3e7ccceb5 (patch) | |
| tree | 1623029428fd86269c84bbfad753db047977ffd0 | |
| parent | 85e36b9694d4b063022bc47c2f98c6ff8ac04f73 (diff) | |
| parent | 950464e7f8e512f2beb0c9e0883db3489bf84cec (diff) | |
Merge pull request #4 from allencho1222/patch-1
change address type into ull
| -rw-r--r-- | src/abstract_hardware_model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/abstract_hardware_model.h b/src/abstract_hardware_model.h index 49f3e9f..c012de0 100644 --- a/src/abstract_hardware_model.h +++ b/src/abstract_hardware_model.h @@ -75,8 +75,8 @@ enum AdaptiveCache { FIXED = 0, ADAPTIVE_VOLTA = 1 }; typedef unsigned long long new_addr_type; typedef unsigned long long cudaTextureObject_t; -typedef unsigned address_type; -typedef unsigned addr_t; +typedef unsigned long long address_type; +typedef unsigned long long addr_t; // the following are operations the timing model can see #define SPECIALIZED_UNIT_NUM 8 |
