File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ jobs:
104104 matrix_name : conda-cpp-build
105105 matrix_filter : map(select(.ARCH == "amd64"))
106106 go-build :
107- needs : cpp -build
107+ needs : go -build-matrix
108108 secrets : inherit
109109 uses : rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
110110 # Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
@@ -130,7 +130,7 @@ jobs:
130130 matrix_name : conda-cpp-build
131131 matrix_filter : map(select(.ARCH == "amd64"))
132132 java-build :
133- needs : cpp -build
133+ needs : java -build-matrix
134134 secrets : inherit
135135 uses : rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
136136 # Artifacts are not published from these jobs, so it's safe to run for multiple CUDA versions.
Original file line number Diff line number Diff line change 11#
2- # SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION.
2+ # SPDX-FileCopyrightText: Copyright (c) 2024-2026 , NVIDIA CORPORATION.
33# SPDX-License-Identifier: Apache-2.0
44#
55# cython: language_level=3
@@ -14,10 +14,8 @@ class CuvsException(Exception):
1414def get_last_error_text ():
1515 """ returns the last error description from the cuvs c-api """
1616 cdef const char * c_err = cuvsGetLastErrorText()
17- if c_err is NULL :
18- return
19- cdef bytes err = c_err
20- return err.decode(" utf8" , " ignore" )
17+ if c_err is not NULL :
18+ return c_err.decode(" utf8" , " ignore" )
2119
2220
2321def check_cuvs (status: cuvsError_t ):
You can’t perform that action at this time.
0 commit comments