Feat/add fi selective state update kernel call (#18070)

Signed-off-by: Shahar Mor <smor@nvidia.com>
This commit is contained in:
shaharmor98
2026-02-19 16:56:06 +08:00
committed by GitHub
parent 0be30d4b0d
commit 82a0bafc1c
8 changed files with 366 additions and 2 deletions
+5 -1
View File
@@ -188,7 +188,11 @@ def run_a_suite(args):
auto_partition_size = args.auto_partition_size
# All tests (per-commit and nightly) are now in registered/
files = glob.glob("registered/**/*.py", recursive=True)
files = [
f
for f in glob.glob("registered/**/*.py", recursive=True)
if not f.endswith("/conftest.py")
]
# Strict: all registered files must have proper registration
sanity_check = True