diff options
| author | JRPan <[email protected]> | 2026-01-22 13:13:33 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-01-22 13:13:33 -0500 |
| commit | 6c3cf4ff32110908386d605a7034fc67666a92de (patch) | |
| tree | 8a68a05a33d7b22187c2207588f9f9ac46dc8aec /src/abstract_hardware_model.cc | |
| parent | b18ee3977962921c49fabe06d26ae19694497c26 (diff) | |
Partial Revert "Fix correlation on A100 CUTLASS GEMM Kernels (#127)" (#133)
* Partial Revert "Fix correlation on A100 CUTLASS GEMM Kernels (#127)"
This reverts commit 987a23f84f8705c0566a47aeda2132fa33a82618.
Only reverting the kernel issue part - issue_block2core.
Co-Authored-By: Claude Opus 4.5 <[email protected]>
* Modernize latency array declarations with C++17 style
- Replace C-style arrays with std::array for type safety
- Add zero-initialization using {} for arrays
- Add explicit zero-initialization for scalar latency variables
- Add #include <array> header
Co-Authored-By: Claude Opus 4.5 <[email protected]>
* format code
---------
Co-authored-by: Claude Opus 4.5 <[email protected]>
Diffstat (limited to 'src/abstract_hardware_model.cc')
| -rw-r--r-- | src/abstract_hardware_model.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/abstract_hardware_model.cc b/src/abstract_hardware_model.cc index 7123c24..e8ddf95 100644 --- a/src/abstract_hardware_model.cc +++ b/src/abstract_hardware_model.cc @@ -782,7 +782,6 @@ kernel_info_t::kernel_info_t(dim3 gridDim, dim3 blockDim, num_blocks() * entry->gpgpu_ctx->device_runtime->g_TB_launch_latency; cache_config_set = false; - allocated_ctas = 0; } /*A snapshot of the texture mappings needs to be stored in the kernel's info as @@ -816,7 +815,6 @@ kernel_info_t::kernel_info_t( cache_config_set = false; m_NameToCudaArray = nameToCudaArray; m_NameToTextureInfo = nameToTextureInfo; - allocated_ctas = 0; } kernel_info_t::~kernel_info_t() { |
