summaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/local_interconnect.h
diff options
context:
space:
mode:
authorJRPan <[email protected]>2025-09-03 16:01:54 -0400
committerGitHub <[email protected]>2025-09-03 13:01:54 -0700
commit987a23f84f8705c0566a47aeda2132fa33a82618 (patch)
tree67cc731de018ab6573a1dd1926cc005b3e5980db /src/gpgpu-sim/local_interconnect.h
parent21b18be3832b80b00d4890f041818bac431866e7 (diff)
Fix correlation on A100 CUTLASS GEMM Kernels (#127)
* 1. Add a queue to promote fairness CTA scheduling 2. Add a Perfect xbar interconnect option * remove merge queue * Should not change this * rename pending cta to allocated_ctas * run formatter
Diffstat (limited to 'src/gpgpu-sim/local_interconnect.h')
-rw-r--r--src/gpgpu-sim/local_interconnect.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gpgpu-sim/local_interconnect.h b/src/gpgpu-sim/local_interconnect.h
index dd10a06..2db7f3c 100644
--- a/src/gpgpu-sim/local_interconnect.h
+++ b/src/gpgpu-sim/local_interconnect.h
@@ -37,7 +37,11 @@ using namespace std;
enum Interconnect_type { REQ_NET = 0, REPLY_NET = 1 };
-enum Arbiteration_type { NAIVE_RR = 0, iSLIP = 1 };
+enum Arbiteration_type {
+ NAIVE_RR = 0, //
+ iSLIP,
+ PERFECT
+};
struct inct_config {
// config for local interconnect
@@ -80,6 +84,7 @@ class xbar_router {
private:
void iSLIP_Advance();
void RR_Advance();
+ void Perfect_Advance();
struct Packet {
Packet(void* m_data, unsigned m_output_deviceID) {