Coverage for cuda / bindings / utils / _ptx_utils.py: 78.57%

14 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-03-25 01:07 +0000

1# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. 

2# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE 

3 

4import re 

5 

6# Mapping based on the official PTX ISA <-> CUDA Release table 

7# https://docs.nvidia.com/cuda/parallel-thread-execution/#release-notes-ptx-release-history 

8_ptx_to_cuda = { 

9 "1.0": (1, 0), 

10 "1.1": (1, 1), 

11 "1.2": (2, 0), 

12 "1.3": (2, 1), 

13 "1.4": (2, 2), 

14 "2.0": (3, 0), 

15 "2.1": (3, 1), 

16 "2.2": (3, 2), 

17 "2.3": (4, 0), 

18 "3.0": (4, 1), 

19 "3.1": (5, 0), 

20 "3.2": (5, 5), 

21 "4.0": (6, 0), 

22 "4.1": (6, 5), 

23 "4.2": (7, 0), 

24 "4.3": (7, 5), 

25 "5.0": (8, 0), 

26 "6.0": (9, 0), 

27 "6.1": (9, 1), 

28 "6.2": (9, 2), 

29 "6.3": (10, 0), 

30 "6.4": (10, 1), 

31 "6.5": (10, 2), 

32 "7.0": (11, 0), 

33 "7.1": (11, 1), 

34 "7.2": (11, 2), 

35 "7.3": (11, 3), 

36 "7.4": (11, 4), 

37 "7.5": (11, 5), 

38 "7.6": (11, 6), 

39 "7.7": (11, 7), 

40 "7.8": (11, 8), 

41 "8.0": (12, 0), 

42 "8.1": (12, 1), 

43 "8.2": (12, 2), 

44 "8.3": (12, 3), 

45 "8.4": (12, 4), 

46 "8.5": (12, 5), 

47 "8.6": (12, 7), 

48 "8.7": (12, 8), 

49 "8.8": (12, 9), 

50 "9.0": (13, 0), 

51 "9.1": (13, 1), 

52 "9.2": (13, 2), 

53} 

54 

55 

56def get_minimal_required_cuda_ver_from_ptx_ver(ptx_version: str) -> int: 

57 """ 

58 Maps the PTX ISA version to the minimal CUDA driver, nvPTXCompiler, or nvJitLink version 

59 that is needed to load a PTX of the given ISA version. 

60 

61 Parameters 

62 ---------- 

63 ptx_version : str 

64 PTX ISA version as a string, e.g. "8.8" for PTX ISA 8.8. This is the ``.version`` 

65 directive in the PTX header. 

66 

67 Returns 

68 ------- 

69 int 

70 Minimal CUDA version as 1000 * major + 10 * minor, e.g. 12090 for CUDA 12.9. 

71 

72 Raises 

73 ------ 

74 ValueError 

75 If the PTX version is unknown. 

76 

77 Examples 

78 -------- 

79 >>> get_minimal_required_driver_ver_from_ptx_ver("8.8") 

80 12090 

81 >>> get_minimal_required_driver_ver_from_ptx_ver("7.0") 

82 11000 

83 """ 

84 try: 1abc

85 major, minor = _ptx_to_cuda[ptx_version] 1abc

86 return 1000 * major + 10 * minor 1abc

87 except KeyError: 

88 raise ValueError(f"Unknown or unsupported PTX ISA version: {ptx_version}") from None 

89 

90 

91# Regex pattern to match .version directive and capture the version number 

92# TODO: if import speed is a concern, consider lazy-initializing it. 

93_ptx_ver_pattern = re.compile(r"\.version\s+([0-9]+\.[0-9]+)") 

94 

95 

96def get_ptx_ver(ptx: str) -> str: 

97 """ 

98 Extract the PTX ISA version string from PTX source code. 

99 

100 Parameters 

101 ---------- 

102 ptx : str 

103 The PTX assembly source code as a string. 

104 

105 Returns 

106 ------- 

107 str 

108 The PTX ISA version string, e.g., "8.8". 

109 

110 Raises 

111 ------ 

112 ValueError 

113 If the .version directive is not found in the PTX source. 

114 

115 Examples 

116 -------- 

117 >>> ptx = r''' 

118 ... .version 8.8 

119 ... .target sm_86 

120 ... .address_size 64 

121 ... 

122 ... .visible .entry test_kernel() 

123 ... { 

124 ... ret; 

125 ... } 

126 ... ''' 

127 >>> get_ptx_ver(ptx) 

128 '8.8' 

129 """ 

130 m = _ptx_ver_pattern.search(ptx) 1abc

131 if m: 1abc

132 return m.group(1) 1abc

133 else: 

134 raise ValueError("No .version directive found in PTX source. Is it a valid PTX?")