Add RTX 3060 Laptop support#551
Open
AndrewVu23 wants to merge 2 commits into
Open
Conversation
AndrewVu23
force-pushed
the
rtx3060-support-clean
branch
from
July 26, 2026 08:29
864eeb6 to
7f83680
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Wires the RTX 3060 Laptop into Accel-Sim end to end: config registry entry, correlation mapping, the
HIT + WRITE_ALLOCATEDcomparable write-hit metric, DP 64,64 trace config, and an NVBit 1.7.6→1.8 bump required for driver ≥59x.Motivation / root cause
NVBit 1.7.6 corrupts traces on driver 596 (garbage register operands -> post-processing crash); NVBit 1.8 fixes it.
The correlator had no RTX3060 mapping, and its L2 write-hit stat used strict
HIT(see related 2)Changes
define-standard-cfgs.yml: RTX3060M base-config entry.correl_mappings.py: RTX3060M card map; L2 Write Hits/Rate =HIT + WRITE_ALLOCATED.example_stats.yml: collectWRITE_ALLOCATED.install_nvbit.sh:NVBIT_VERSION=1.8.trace.config: DP 64,64 (latency ≥ init; consumer-Ampere 1/64 DP) (see related 1)Evidence (before / after)
Before: corrupt trace lines / post-process crash on driver 596
After: 0 corrupt lines across 16 ubenchs. Correlation: full ubench + 10-app rodinia (GPC 0.997, L2 write-hit 0.999 comparable)
Test plan
run_hw_trace.pyproduces clean traces (NVBit 1.8)get_stats.py -R -K -k+plot-correlation.pyproduce the dashboardCompatibility / backward compatibility
correl_mappings.pywrite-hit change is coupled to (see related 2)Related