[llvm] [LIT][NVPTX] Add a few more known ptxas versions (PR #89761)

Durgadoss R via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 23 06:14:44 PDT 2024


https://github.com/durga4github created https://github.com/llvm/llvm-project/pull/89761

This patch adds known ptxas versions up to 12.4,
to have tests targeting them.

>From 15f99974d851d3678d2c53733f64402d39d10c45 Mon Sep 17 00:00:00 2001
From: Durgadoss R <durgadossr at nvidia.com>
Date: Tue, 23 Apr 2024 18:32:18 +0530
Subject: [PATCH] [LIT][NVPTX] Add a few more known ptxas versions

This patch adds known ptxas versions up to 12.4,
to have tests targeting them.

Signed-off-by: Durgadoss R <durgadossr at nvidia.com>
---
 llvm/test/lit.cfg.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py
index 4c05317036d1a3..affd87b98c1410 100644
--- a/llvm/test/lit.cfg.py
+++ b/llvm/test/lit.cfg.py
@@ -306,6 +306,9 @@ def enable_ptxas(ptxas_executable):
             (11, 8),
             (12, 0),
             (12, 1),
+            (12, 2),
+            (12, 3),
+            (12, 4),
         ]
 
         def version_int(ver):



More information about the llvm-commits mailing list