File tree Expand file tree Collapse file tree 3 files changed +12
-14
lines changed
Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 2626if os .getenv ("CUDA_INSTALLER_DEBUG" , False ) == "True" :
2727 VERSION = "debug"
2828else :
29- VERSION = "v1.8.0 "
29+ VERSION = "v1.8.1 "
3030
3131# Hashes in this map are SHA256
3232VERSION_MAP = {
3333 "prod" : {
3434 "driver" : {
35- "version" : "580.105.08 " ,
36- "hash" : "d9c6e8188672f3eb74dd04cfa69dd58479fa1d0162c8c28c8d17625763293475 " ,
35+ "version" : "580.126.20 " ,
36+ "hash" : "a055dbeae72438f20335b41929a060148c82c69d2147c0d922660e8c5a265eb1 " ,
3737 },
3838 "rtx-driver" : {
39- "version" : "580.105.08 -grid" ,
40- "hash" : "6372d1058fc1434a7f42b9bde02dbd266ec45f1c3253682b860c82427d6c33db " ,
39+ "version" : "580.126.09 -grid" ,
40+ "hash" : "e12c87b74b68cfde53f342c4c66e06d0a8bb4b4c34ec9b78a499e67ffc47903d " ,
4141 },
4242 "cuda" : {
4343 "major" : "13" ,
5757 "cuda" : {
5858 "major" : "13" ,
5959 "minor" : "1" ,
60- "patch" : "0 " ,
61- "driver" : "590.44 .01" ,
62- "hash" : "6b4fdf2694b3d7afbc526f26412b4cf4f050b202324455053307310f53b323a7 " ,
60+ "patch" : "1 " ,
61+ "driver" : "590.48 .01" ,
62+ "hash" : "24ff323723722781436804b392a48f691cb40de9808095d3e2192d0db6dfb8e4 " ,
6363 "samples" : "13.1" ,
6464 "samples_hash" : "03d7748a773fcd2350c2de88f2d167252c78ea90a52e229e7eb2a6922e3ba350" ,
6565 },
6666 },
6767 "lts" : {
6868 "driver" : {
69- "version" : "580.105.08 " ,
70- "hash" : "d9c6e8188672f3eb74dd04cfa69dd58479fa1d0162c8c28c8d17625763293475 " ,
69+ "version" : "580.126.20 " ,
70+ "hash" : "a055dbeae72438f20335b41929a060148c82c69d2147c0d922660e8c5a265eb1 " ,
7171 },
7272 "cuda" : {
7373 "major" : "13" ,
Original file line number Diff line number Diff line change @@ -144,9 +144,8 @@ def _repo_install_driver(
144144 )
145145
146146 try :
147- driver_version = VERSION_MAP [branch ]["driver" ]["version" ].split ("." )[0 ]
148147 logger .info ("Installing GPU driver..." )
149- self .run (f"apt-get install -yq cuda-drivers- { driver_version } " )
148+ self .run (f"apt-get install -yq cuda-drivers" )
150149 self .run (f"apt-mark hold cuda-drivers" )
151150 finally :
152151 if secure_boot_public_key and secure_boot_private_key :
Original file line number Diff line number Diff line change @@ -107,8 +107,7 @@ def _repo_install_driver(
107107
108108 try :
109109 logger .info ("Installing GPU driver..." )
110- driver_version = VERSION_MAP [branch ]["driver" ]["version" ].split ("." )[0 ]
111- self .run (f"apt-get install -yq cuda-drivers-{ driver_version } " )
110+ self .run (f"apt-get install -yq cuda-drivers" )
112111 self .run (f"apt-mark hold cuda-drivers" )
113112 finally :
114113 if secure_boot_public_key and secure_boot_private_key :
You can’t perform that action at this time.
0 commit comments