Skip to content

Commit 7d659fa

Browse files
njriasanmeta-codesync[bot]
authored andcommitted
Fix BufferOps Visualization Typo (#191)
Summary: Fixes an issue where the ttgir BufferOps and Global Ops information was swapped. I applied the change in the review to the GCN but not the ttgir. Pull Request resolved: #191 Reviewed By: FindHao Differential Revision: D85689435 Pulled By: njriasan fbshipit-source-id: a59540d17e2db695838f032bc2f5c29e97a3dfd1
1 parent 479c9ac commit 7d659fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/src/pages/IRAnalysis.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ const IRAnalysis: React.FC<IRAnalysisProps> = ({ kernels, selectedKernel }) => {
4949
{ttgir_info && (
5050
<>
5151
<div className="flex flex-col">
52-
<span className="text-sm font-medium text-gray-500">Tiled Buffer Load Count</span>
52+
<span className="text-sm font-medium text-gray-500">Tiled Global Load Count</span>
5353
<span className="font-mono text-sm break-words">{getCount(ttgir_info, "tt.load_count")}</span>
5454
</div>
5555
<div className="flex flex-col">
56-
<span className="text-sm font-medium text-gray-500">Tiled Buffer Store Count</span>
56+
<span className="text-sm font-medium text-gray-500">Tiled Global Store Count</span>
5757
<span className="font-mono text-sm break-words">{getCount(ttgir_info, "tt.store_count")}</span>
5858
</div>
5959
<div className="flex flex-col">
60-
<span className="text-sm font-medium text-gray-500">Tiled Global Load Count</span>
60+
<span className="text-sm font-medium text-gray-500">Tiled Buffer Load Count</span>
6161
<span className="font-mono text-sm break-words">{getCount(ttgir_info, "amdgpu.buffer_load_count")}</span>
6262
</div>
6363
<div className="flex flex-col">
64-
<span className="text-sm font-medium text-gray-500">Tiled Global Store Count</span>
64+
<span className="text-sm font-medium text-gray-500">Tiled Buffer Store Count</span>
6565
<span className="font-mono text-sm break-words">{getCount(ttgir_info, "amdgpu.buffer_store_count")}</span>
6666
</div>
6767
</>

0 commit comments

Comments
 (0)