Skip to content

Commit 8322302

Browse files
committed
Update Video SDK to 13.0
1 parent 7aa603b commit 8322302

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/scripts/install_cuda_toolkit.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
DEFAULT_BASE_URL: Final[str] = (
2828
"https://developer.download.nvidia.com/compute/cuda/redist"
2929
)
30-
DEFAULT_CUDA_VERSION: Final[str] = "12.3.2"
31-
COMPONENTS_TO_DOWNLOAD: Final[list[str]] = ["cuda_cudart", "cuda_nvcc"]
30+
DEFAULT_CUDA_VERSION: Final[str] = "13.0.2"
31+
COMPONENTS_TO_DOWNLOAD: Final[list[str]] = ["cuda_cudart", "cuda_nvcc", "cuda_crt", "libnvvm"]
3232

3333

3434
def detect_platform() -> str:
@@ -92,7 +92,7 @@ def get_component_path(
9292

9393
def download_file(url: str, destination: Path) -> None:
9494
"""Download a file from a URL to a local path."""
95-
logger.info("Downloading %s...", url)
95+
logger.info("Downloading %s ...", url)
9696

9797
try:
9898
with urllib.request.urlopen(url, timeout=300) as response:
@@ -112,7 +112,7 @@ def download_file(url: str, destination: Path) -> None:
112112

113113
def extract_archive(archive_path: Path, extract_to: Path) -> None:
114114
"""Extract an archive (zip or tar.xz) to a directory."""
115-
logger.info("Extracting %s to %s...", archive_path, extract_to)
115+
logger.info("Extracting %s to %s ...", archive_path, extract_to)
116116
kwargs = {}
117117

118118
if archive_path.suffix == ".zip":
@@ -127,7 +127,7 @@ def extract_archive(archive_path: Path, extract_to: Path) -> None:
127127

128128
def copy_directory_contents(src: Path, dst: Path) -> None:
129129
"""Copy all contents from src directory to dst directory."""
130-
logger.info("Copying contents from %s to %s...", src, dst)
130+
logger.info("Copying contents from %s to %s ...", src, dst)
131131
for item in src.iterdir():
132132
dst_item = dst / item.name
133133
if item.is_dir():

.github/workflows/packaging.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ jobs:
4747
matrix:
4848
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4949
free-threaded: [""]
50-
cuda-version: ["12.8.1"]
50+
cuda-version: ["13.0.1"]
5151
include:
5252
- python-version: "3.13"
5353
free-threaded: "ft"
54-
cuda-version: "12.8.1"
54+
cuda-version: "13.0.1"
5555
- python-version: "3.14"
5656
free-threaded: "ft"
57-
cuda-version: "12.8.1"
57+
cuda-version: "13.0.1"
5858
uses: ./.github/workflows/_build_windows.yml
5959
with:
6060
python-version: "${{ matrix.python-version }}"
@@ -97,15 +97,15 @@ jobs:
9797
fail-fast: false
9898
matrix:
9999
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
100-
cuda-version: ["12.8.1"]
100+
cuda-version: ["13.0.1"]
101101
free-threaded: [""]
102102
include:
103103
- python-version: "3.13"
104104
free-threaded: "ft"
105-
cuda-version: "12.8.1"
105+
cuda-version: "13.0.1"
106106
- python-version: "3.14"
107107
free-threaded: "ft"
108-
cuda-version: "12.8.1"
108+
cuda-version: "13.0.1"
109109
uses: ./.github/workflows/_build_linux_cuda.yml
110110
with:
111111
python-version: "${{ matrix.python-version }}"

src/third_party/nvcodec/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ message(STATUS "########################################")
44

55
FetchContent_Declare(
66
nvcodec_stub
7-
URL https://github.com/mthrok/nvcodec_stub/archive/refs/tags/0.2.0.tar.gz
8-
URL_HASH SHA256=e811abfc07062793b7e578092c069e4dcab4d315ff9e748cfebbea7ea15b2b48
7+
URL https://github.com/mthrok/nvcodec_stub/archive/refs/tags/0.3.0.tar.gz
8+
URL_HASH SHA256=249bd10d0040b1ed30ff7813e735760c121f3b9040eeb01106238d30c3e577fc
99
DOWNLOAD_DIR "${CMAKE_CURRENT_SOURCE_DIR}"
1010
)
1111
FetchContent_MakeAvailable(nvcodec_stub)

0 commit comments

Comments
 (0)