Skip to content

Commit 8e9d052

Browse files
committed
Merge branch 'main' of https://github.com/chloechia4/cuda-python1 into cufile_update
2 parents e1eabf8 + 3f81345 commit 8e9d052

8 files changed

Lines changed: 190 additions & 1682 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ repos:
7777
rev: "03d0035246f3e81f36aed592ffb4bebf33a03106" # frozen: v1.7.7
7878
hooks:
7979
- id: actionlint
80+
args: ["-shellcheck="]
8081

8182
- repo: https://github.com/MarcoGorelli/cython-lint
8283
rev: "d9ff7ce99ef4f2ae8fba93079ca9d76c4651d4ac" # frozen: v0.18.0

cuda_bindings/cuda/bindings/_internal/cufile.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
44
#
5-
# This code was automatically generated across versions from 12.9.0 to 13.0.2. Do not modify it directly.
5+
# This code was automatically generated across versions from 12.9.1 to 13.0.2. Do not modify it directly.
66

77
from ..cycufile cimport *
88

cuda_bindings/cuda/bindings/_internal/cufile_linux.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
44
#
5-
# This code was automatically generated across versions from 12.9.0 to 13.0.2. Do not modify it directly.
5+
# This code was automatically generated across versions from 12.9.1 to 13.0.2. Do not modify it directly.
66

77
from libc.stdint cimport intptr_t, uintptr_t
88
import threading

cuda_bindings/cuda/bindings/cufile.pxd

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
44
#
5-
# This code was automatically generated across versions from 12.9.0 to 13.0.2. Do not modify it directly.
5+
# This code was automatically generated across versions from 12.9.1 to 13.0.2. Do not modify it directly.
66

77
from libc.stdint cimport intptr_t
88

@@ -18,7 +18,12 @@ ctypedef CUfileBatchHandle_t BatchHandle
1818
ctypedef CUfileError_t Error
1919
ctypedef cufileRDMAInfo_t RDMAInfo
2020
ctypedef CUfileFSOps_t FSOps
21+
ctypedef CUfileOpCounter_t OpCounter
22+
ctypedef CUfilePerGpuStats_t PerGpuStats
2123
ctypedef CUfileDrvProps_t DrvProps
24+
ctypedef CUfileStatsLevel1_t StatsLevel1
25+
ctypedef CUfileStatsLevel2_t StatsLevel2
26+
ctypedef CUfileStatsLevel3_t StatsLevel3
2227

2328

2429
###############################################################################
@@ -72,7 +77,7 @@ cpdef str get_parameter_string(int param, int len)
7277
cpdef set_parameter_size_t(int param, size_t value)
7378
cpdef set_parameter_bool(int param, bint value)
7479
cpdef set_parameter_string(int param, intptr_t desc_str)
75-
cpdef get_parameter_min_max_value(int param, intptr_t min_value, intptr_t max_value)
80+
cpdef tuple get_parameter_min_max_value(int param)
7681
cpdef set_stats_level(int level)
7782
cpdef int get_stats_level() except? 0
7883
cpdef stats_start()

0 commit comments

Comments
 (0)