Skip to content

Commit eaf5dc4

Browse files
committed
[HIPIFY][FILE] Sync with cuFile - Part 2 - final
+ Added yet unsupported data types and functions + Updated the regenerated `hipify-perl` and `File` `CUDA2HIP` docs accordingly + [fix][perl][unrelated] Added the missed CUDA-13-removed `cudaSetDoubleForHost` and `cudaSetDoubleForDevice` (`hipify-perl` regenerated)
1 parent 34bfa62 commit eaf5dc4

File tree

4 files changed

+144
-0
lines changed

4 files changed

+144
-0
lines changed

bin/hipify-perl

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1575,6 +1575,8 @@ my %removed_funcs = (
15751575
"cudaThreadGetCacheConfig" => "13.0",
15761576
"cudaThreadExit" => "13.0",
15771577
"cudaSetupArgument" => "10.1",
1578+
"cudaSetDoubleForHost" => "13.0",
1579+
"cudaSetDoubleForDevice" => "13.0",
15781580
"cudaProfilerInitialize" => "12.0",
15791581
"cudaOutputMode_t" => "12.0",
15801582
"cudaOutputMode" => "12.0",
@@ -7491,6 +7493,7 @@ sub simpleSubstitutions {
74917493
subst("CUDA_TEXTURE_DESC", "HIP_TEXTURE_DESC", "type");
74927494
subst("CUDA_TEXTURE_DESC_st", "HIP_TEXTURE_DESC_st", "type");
74937495
subst("CUDA_TEXTURE_DESC_v1", "HIP_TEXTURE_DESC", "type");
7496+
subst("CUFILEStatus_enum", "hipFileStatus_t", "type");
74947497
subst("CUFileBoolConfigParameter_t", "hipFileBoolConfigParameter_t", "type");
74957498
subst("CUFileSizeTConfigParameter_t", "hipFileSizeTConfigParameter_t", "type");
74967499
subst("CUFileStringConfigParameter_t", "hipFileStringConfigParameter_t", "type");
@@ -7549,12 +7552,15 @@ sub simpleSubstitutions {
75497552
subst("CUfileDrvProps", "hipFileDriverProps_t", "type");
75507553
subst("CUfileDrvProps_t", "hipFileDriverProps_t", "type");
75517554
subst("CUfileError_t", "hipFileError_t", "type");
7555+
subst("CUfileFSOps", "hipFileFSOps_t", "type");
75527556
subst("CUfileFSOps_t", "hipFileFSOps_t", "type");
75537557
subst("CUfileFeatureFlags", "hipFileFeatureFlags_t", "type");
75547558
subst("CUfileFeatureFlags_t", "hipFileFeatureFlags_t", "type");
75557559
subst("CUfileFileHandleType", "hipFileFileHandleType", "type");
75567560
subst("CUfileHandle_t", "hipFileHandle_t", "type");
7561+
subst("CUfileIOEvents", "hipFileIOEvents_t", "type");
75577562
subst("CUfileIOEvents_t", "hipFileIOEvents_t", "type");
7563+
subst("CUfileIOParams", "hipFileIOParams_t", "type");
75587564
subst("CUfileIOParams_t", "hipFileIOParams_t", "type");
75597565
subst("CUfileOpError", "hipFileOpError_t", "type");
75607566
subst("CUfileOpcode", "hipFileDriverProps_t", "type");
@@ -8007,6 +8013,8 @@ sub simpleSubstitutions {
80078013
subst("cufftXtCopyType_t", "hipfftXtCopyType_t", "type");
80088014
subst("cufftXtSubFormat", "hipfftXtSubFormat", "type");
80098015
subst("cufftXtSubFormat_t", "hipfftXtSubFormat_t", "type");
8016+
subst("cufileBatchMode", "hipFileBatchMode_t", "type");
8017+
subst("cufileRDMAInfo", "hipFileRDMAInfo_t", "type");
80108018
subst("cufileRDMAInfo_t", "hipFileRDMAInfo_t", "type");
80118019
subst("curandDirectionVectorSet", "hiprandDirectionVectorSet_t", "type");
80128020
subst("curandDirectionVectorSet_t", "hiprandDirectionVectorSet_t", "type");
@@ -12290,7 +12298,9 @@ sub warnRemovedFunctions {
1229012298
"cudaDeviceNumaConfigNone",
1229112299
"cudaDeviceNumaConfig",
1229212300
"cudaDeviceMask",
12301+
"cudaDeviceGetP2PAtomicCapabilities",
1229312302
"cudaDeviceGetNvSciSyncAttributes",
12303+
"cudaDeviceGetHostAtomicCapabilities",
1229412304
"cudaDeviceFlushGPUDirectRDMAWrites",
1229512305
"cudaDevP2PAttrOnlyPartialNativeAtomicSupported",
1229612306
"cudaDevAttrVulkanCigSupported",
@@ -12744,6 +12754,21 @@ sub warnRemovedFunctions {
1274412754
"cuFuncGetName",
1274512755
"cuFuncGetModule",
1274612756
"cuFlushGPUDirectRDMAWrites",
12757+
"cuFileStatsStop",
12758+
"cuFileStatsStart",
12759+
"cuFileStatsReset",
12760+
"cuFileSetStatsLevel",
12761+
"cuFileSetParameterPosixPoolSlabArray",
12762+
"cuFileGetVersion",
12763+
"cuFileGetStatsLevel",
12764+
"cuFileGetStatsL3",
12765+
"cuFileGetStatsL2",
12766+
"cuFileGetStatsL1",
12767+
"cuFileGetParameterPosixPoolSlabArray",
12768+
"cuFileGetParameterMinMaxValue",
12769+
"cuFileGetBARSizeInKB",
12770+
"cuFileDriverSetP2PFlags",
12771+
"cuFileDriverGetP2PFlags",
1274712772
"cuExternalMemoryGetMappedMipmappedArray",
1274812773
"cuEventCreateFromEGLSync",
1274912774
"cuEGLStreamProducerReturnFrame",
@@ -12957,8 +12982,18 @@ sub warnRemovedFunctions {
1295712982
"CUflushGPUDirectRDMAWritesTarget",
1295812983
"CUflushGPUDirectRDMAWritesScope_enum",
1295912984
"CUflushGPUDirectRDMAWritesScope",
12985+
"CUfileStatsLevel3_t",
12986+
"CUfileStatsLevel3",
12987+
"CUfileStatsLevel2_t",
12988+
"CUfileStatsLevel2",
12989+
"CUfileStatsLevel1_t",
12990+
"CUfileStatsLevel1",
12991+
"CUfilePerGpuStats_t",
12992+
"CUfilePerGpuStats",
1296012993
"CUfileP2PFlags_t",
1296112994
"CUfileP2PFlags",
12995+
"CUfileOpCounter_t",
12996+
"CUfileOpCounter",
1296212997
"CUexternalSemaphore_st",
1296312998
"CUexternalMemory_st",
1296412999
"CUextent3D_v1",
@@ -13689,9 +13724,13 @@ sub warnRemovedFunctions {
1368913724
"CURAND_3RD",
1369013725
"CUGLmap_flags_enum",
1369113726
"CUGLmap_flags",
13727+
"CUFileArrayConfigParameter_t",
13728+
"CUFILE_PARAM_POSIX_POOL_SLAB_SIZE_KB",
13729+
"CUFILE_PARAM_POSIX_POOL_SLAB_COUNT",
1369213730
"CUFILE_P2PDMA",
1369313731
"CUFILE_NVIDIA_PEERMEM",
1369413732
"CUFILE_NVFS",
13733+
"CUFILE_GPU_UUID_LEN",
1369513734
"CUFILE_DMABUF",
1369613735
"CUFILE_C2C",
1369713736
"CUFFT_XT_FORMAT_DISTRIBUTED_OUTPUT",

docs/reference/tables/cuFile_API_supported_by_HIP.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@
1414

1515
|**CUDA**|**A**|**D**|**C**|**R**|**HIP**|**A**|**D**|**C**|**R**|**U**|**E**|
1616
|:--|:-:|:-:|:-:|:-:|:--|:-:|:-:|:-:|:-:|:-:|:-:|
17+
|`CUFILEStatus_enum`|1.2.0| | | |`hipFileStatus_t`|7.2.0| | | | | |
1718
|`CUFILE_BATCH`|1.2.0| | | |`hipFileBatch`|7.2.0| | | | | |
1819
|`CUFILE_C2C`|1.16.0| | | | | | | | | | |
1920
|`CUFILE_CANCELED`|1.2.0| | | |`hipFileCanceled`|7.2.0| | | | | |
2021
|`CUFILE_COMPLETE`|1.2.0| | | |`hipFileComplete`|7.2.0| | | | | |
2122
|`CUFILE_DMABUF`|1.16.0| | | | | | | | | | |
2223
|`CUFILE_ERRSTR`|1.0.0| | | |`HIPFILE_ERRSTR`|7.2.0| | | | | |
2324
|`CUFILE_FAILED`|1.2.0| | | |`hipFileFailed`|7.2.0| | | | | |
25+
|`CUFILE_GPU_UUID_LEN`|1.15.0| | | | | | | | | | |
2426
|`CUFILE_INVALID`|1.2.0| | | |`hipFileInvalid`|7.2.0| | | | | |
2527
|`CUFILE_NVFS`|1.16.0| | | | | | | | | | |
2628
|`CUFILE_NVIDIA_PEERMEM`|1.16.0| | | | | | | | | | |
@@ -37,6 +39,8 @@
3739
|`CUFILE_PARAM_LOGGING_LEVEL`|1.14.0| | | |`hipFileParamLoggingLevel`|7.2.0| | | | | |
3840
|`CUFILE_PARAM_LOG_DIR`|1.14.0| | | |`hipFileParamLogDir`|7.2.0| | | | | |
3941
|`CUFILE_PARAM_POLLTHRESHOLD_SIZE_KB`|1.14.0| | | |`hipFileParamPollthresholdSizeKB`|7.2.0| | | | | |
42+
|`CUFILE_PARAM_POSIX_POOL_SLAB_COUNT`|1.15.0| | | | | | | | | | |
43+
|`CUFILE_PARAM_POSIX_POOL_SLAB_SIZE_KB`|1.15.0| | | | | | | | | | |
4044
|`CUFILE_PARAM_PREFER_IO_URING`|1.14.0| | | |`hipFileParamPreferIOUring`|7.2.0| | | | | |
4145
|`CUFILE_PARAM_PROFILE_NVTX`|1.14.0| | | |`hipFileParamProfileNvtx`|7.2.0| | | | | |
4246
|`CUFILE_PARAM_PROFILE_STATS`|1.14.0| | | |`hipFileParamProfileStats`|7.2.0| | | | | |
@@ -57,6 +61,7 @@
5761
|`CUFILE_TIMEOUT`|1.2.0| | | |`hipFileTimeout`|7.2.0| | | | | |
5862
|`CUFILE_WAITING`|1.2.0| | | |`hipFileWaiting`|7.2.0| | | | | |
5963
|`CUFILE_WRITE`|1.2.0| | | |`hipFileBatchWrite`|7.2.0| | | | | |
64+
|`CUFileArrayConfigParameter_t`|1.15.0| | | | | | | | | | |
6065
|`CUFileBoolConfigParameter_t`|1.14.0| | | |`hipFileBoolConfigParameter_t`|7.2.0| | | | | |
6166
|`CUFileSizeTConfigParameter_t`|1.14.0| | | |`hipFileSizeTConfigParameter_t`|7.2.0| | | | | |
6267
|`CUFileStringConfigParameter_t`|1.14.0| | | |`hipFileStringConfigParameter_t`|7.2.0| | | | | |
@@ -142,21 +147,36 @@
142147
|`CUfileDrvProps`|1.0.0| | | |`hipFileDriverProps_t`|7.2.0| | | | | |
143148
|`CUfileDrvProps_t`|1.0.0| | | |`hipFileDriverProps_t`|7.2.0| | | | | |
144149
|`CUfileError_t`|1.0.0| | | |`hipFileError_t`|7.2.0| | | | | |
150+
|`CUfileFSOps`|1.0.0| | | |`hipFileFSOps_t`|7.2.0| | | | | |
145151
|`CUfileFSOps_t`|1.0.0| | | |`hipFileFSOps_t`|7.2.0| | | | | |
146152
|`CUfileFeatureFlags`|1.0.0| | | |`hipFileFeatureFlags_t`|7.2.0| | | | | |
147153
|`CUfileFeatureFlags_t`|1.0.0| | | |`hipFileFeatureFlags_t`|7.2.0| | | | | |
148154
|`CUfileFileHandleType`|1.0.0| | | |`hipFileFileHandleType`|7.2.0| | | | | |
149155
|`CUfileHandle_t`|1.0.0| | | |`hipFileHandle_t`|7.2.0| | | | | |
156+
|`CUfileIOEvents`|1.2.0| | | |`hipFileIOEvents_t`|7.2.0| | | | | |
150157
|`CUfileIOEvents_t`|1.2.0| | | |`hipFileIOEvents_t`|7.2.0| | | | | |
158+
|`CUfileIOParams`|1.2.0| | | |`hipFileIOParams_t`|7.2.0| | | | | |
151159
|`CUfileIOParams_t`|1.2.0| | | |`hipFileIOParams_t`|7.2.0| | | | | |
160+
|`CUfileOpCounter`|1.15.0| | | | | | | | | | |
161+
|`CUfileOpCounter_t`|1.15.0| | | | | | | | | | |
152162
|`CUfileOpError`|1.0.0| | | |`hipFileOpError_t`|7.2.0| | | | | |
153163
|`CUfileOpcode`|1.0.0| | | |`hipFileDriverProps_t`|7.2.0| | | | | |
154164
|`CUfileOpcode_t`|1.2.0| | | |`hipFileOpcode_t`|7.2.0| | | | | |
155165
|`CUfileP2PFlags`|1.16.0| | | | | | | | | | |
156166
|`CUfileP2PFlags_t`|1.16.0| | | | | | | | | | |
167+
|`CUfilePerGpuStats`|1.15.0| | | | | | | | | | |
168+
|`CUfilePerGpuStats_t`|1.15.0| | | | | | | | | | |
169+
|`CUfileStatsLevel1`|1.15.0| | | | | | | | | | |
170+
|`CUfileStatsLevel1_t`|1.15.0| | | | | | | | | | |
171+
|`CUfileStatsLevel2`|1.15.0| | | | | | | | | | |
172+
|`CUfileStatsLevel2_t`|1.15.0| | | | | | | | | | |
173+
|`CUfileStatsLevel3`|1.15.0| | | | | | | | | | |
174+
|`CUfileStatsLevel3_t`|1.15.0| | | | | | | | | | |
157175
|`CUfileStatus_t`|1.2.0| | | |`hipFileStatus_t`|7.2.0| | | | | |
158176
|`IS_CUDA_ERR`|1.0.0| | | |`IS_HIP_DRV_ERR`|7.2.0| | | | | |
159177
|`IS_CUFILE_ERR`|1.0.0| | | |`IS_HIPFILE_ERR`|7.2.0| | | | | |
178+
|`cufileBatchMode`|1.2.0| | | |`hipFileBatchMode_t`|7.2.0| | | | | |
179+
|`cufileRDMAInfo`|1.0.0| | | |`hipFileRDMAInfo_t`|7.2.0| | | | | |
160180
|`cufileRDMAInfo_t`|1.0.0| | | |`hipFileRDMAInfo_t`|7.2.0| | | | | |
161181
|`sockaddr_t`|1.0.0| | | |`sockaddr`| | | | | | |
162182

@@ -173,22 +193,37 @@
173193
|`cuFileBufRegister`|1.0.0| | | |`hipFileBufRegister`|7.2.0| | | | | |
174194
|`cuFileDriverClose`|1.0.0| | | |`hipFileDriverClose`|7.2.0| | | | | |
175195
|`cuFileDriverClose_v2`|1.4.0| | | |`hipFileDriverClose`|7.2.0| | | | | |
196+
|`cuFileDriverGetP2PFlags`|1.15.0| | | | | | | | | | |
176197
|`cuFileDriverGetProperties`|1.0.0| | | |`hipFileDriverGetProperties`|7.2.0| | | | | |
177198
|`cuFileDriverOpen`|1.0.0| | | |`hipFileDriverOpen`|7.2.0| | | | | |
178199
|`cuFileDriverSetMaxCacheSize`|1.0.0| | | |`hipFileDriverSetMaxCacheSize`|7.2.0| | | | | |
179200
|`cuFileDriverSetMaxDirectIOSize`|1.0.0| | | |`hipFileDriverSetMaxDirectIOSize`|7.2.0| | | | | |
180201
|`cuFileDriverSetMaxPinnedMemSize`|1.0.0| | | |`hipFileDriverSetMaxPinnedMemSize`|7.2.0| | | | | |
202+
|`cuFileDriverSetP2PFlags`|1.15.0| | | | | | | | | | |
181203
|`cuFileDriverSetPollMode`|1.0.0| | | |`hipFileDriverSetPollMode`|7.2.0| | | | | |
204+
|`cuFileGetBARSizeInKB`|1.15.0| | | | | | | | | | |
182205
|`cuFileGetParameterBool`|1.14.0| | | |`hipFileGetParameterBool`|7.2.0| | | | | |
206+
|`cuFileGetParameterMinMaxValue`|1.15.0| | | | | | | | | | |
207+
|`cuFileGetParameterPosixPoolSlabArray`|1.15.0| | | | | | | | | | |
183208
|`cuFileGetParameterSizeT`|1.14.0| | | |`hipFileGetParameterSizeT`|7.2.0| | | | | |
184209
|`cuFileGetParameterString`|1.14.0| | | |`hipFileGetParameterString`|7.2.0| | | | | |
210+
|`cuFileGetStatsL1`|1.15.0| | | | | | | | | | |
211+
|`cuFileGetStatsL2`|1.15.0| | | | | | | | | | |
212+
|`cuFileGetStatsL3`|1.15.0| | | | | | | | | | |
213+
|`cuFileGetStatsLevel`|1.15.0| | | | | | | | | | |
214+
|`cuFileGetVersion`|1.8.0| | | | | | | | | | |
185215
|`cuFileHandleDeregister`|1.0.0| | | |`hipFileHandleDeregister`|7.2.0| | | | | |
186216
|`cuFileHandleRegister`|1.0.0| | | |`hipFileHandleRegister`|7.2.0| | | | | |
187217
|`cuFileRead`|1.0.0| | | |`hipFileRead`|7.2.0| | | | | |
188218
|`cuFileReadAsync`|1.7.0| | | |`hipFileReadAsync`|7.2.0| | | | | |
189219
|`cuFileSetParameterBool`|1.14.0| | | |`hipFileSetParameterBool`|7.2.0| | | | | |
220+
|`cuFileSetParameterPosixPoolSlabArray`|1.15.0| | | | | | | | | | |
190221
|`cuFileSetParameterSizeT`|1.14.0| | | |`hipFileSetParameterSizeT`|7.2.0| | | | | |
191222
|`cuFileSetParameterString`|1.14.0| | | |`hipFileSetParameterString`|7.2.0| | | | | |
223+
|`cuFileSetStatsLevel`|1.15.0| | | | | | | | | | |
224+
|`cuFileStatsReset`|1.15.0| | | | | | | | | | |
225+
|`cuFileStatsStart`|1.15.0| | | | | | | | | | |
226+
|`cuFileStatsStop`|1.15.0| | | | | | | | | | |
192227
|`cuFileStreamDeregister`|1.7.0| | | |`hipFileStreamDeregister`|7.2.0| | | | | |
193228
|`cuFileStreamRegister`|1.7.0| | | |`hipFileStreamRegister`|7.2.0| | | | | |
194229
|`cuFileUseCount`|1.4.0| | | |`hipFileUseCount`|7.2.0| | | | | |

src/CUDA2HIP_FILE_API_functions.cpp

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,21 @@ const std::map<llvm::StringRef, hipCounter> CUDA_FILE_FUNCTION_MAP {
5454
{"cuFileSetParameterSizeT", {"hipFileSetParameterSizeT", "", CONV_LIB_FUNC, API_FILE, 2}},
5555
{"cuFileSetParameterBool", {"hipFileSetParameterBool", "", CONV_LIB_FUNC, API_FILE, 2}},
5656
{"cuFileSetParameterString", {"hipFileSetParameterString", "", CONV_LIB_FUNC, API_FILE, 2}},
57+
{"cuFileGetVersion", {"hipFileGetVersion", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
58+
{"cuFileGetParameterMinMaxValue", {"hipFileGetParameterMinMaxValue", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
59+
{"cuFileSetStatsLevel", {"hipFileSetStatsLevel", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
60+
{"cuFileGetStatsLevel", {"hipFileGetStatsLevel", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
61+
{"cuFileStatsStart", {"hipFileStatsStart", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
62+
{"cuFileStatsStop", {"hipFileStatsStop", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
63+
{"cuFileStatsReset", {"hipFileStatsReset", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
64+
{"cuFileGetStatsL1", {"hipFileGetStatsL1", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
65+
{"cuFileGetStatsL2", {"hipFileGetStatsL2", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
66+
{"cuFileGetStatsL3", {"hipFileGetStatsL3", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
67+
{"cuFileGetBARSizeInKB", {"hipFileGetBARSizeInKB", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
68+
{"cuFileSetParameterPosixPoolSlabArray", {"hipFileSetParameterPosixPoolSlabArray", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
69+
{"cuFileGetParameterPosixPoolSlabArray", {"hipFileGetParameterPosixPoolSlabArray", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
70+
{"cuFileDriverGetP2PFlags", {"hipFileDriverGetP2PFlags", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
71+
{"cuFileDriverSetP2PFlags", {"hipFileDriverSetP2PFlags", "", CONV_LIB_FUNC, API_FILE, 2, UNSUPPORTED}},
5772
};
5873

5974
const std::map<llvm::StringRef, hipAPIversions> HIP_FILE_FUNCTION_VER_MAP {
@@ -121,6 +136,21 @@ const std::map<llvm::StringRef, cudaAPIversions> CUDA_FILE_FUNCTION_VER_MAP {
121136
{"cuFileSetParameterSizeT", {CUFILE_1140, CUDA_0, CUDA_0}},
122137
{"cuFileSetParameterBool", {CUFILE_1140, CUDA_0, CUDA_0}},
123138
{"cuFileSetParameterString", {CUFILE_1140, CUDA_0, CUDA_0}},
139+
{"cuFileGetVersion", {CUFILE_1080, CUDA_0, CUDA_0}},
140+
{"cuFileGetParameterMinMaxValue", {CUFILE_1150, CUDA_0, CUDA_0}},
141+
{"cuFileSetStatsLevel", {CUFILE_1150, CUDA_0, CUDA_0}},
142+
{"cuFileGetStatsLevel", {CUFILE_1150, CUDA_0, CUDA_0}},
143+
{"cuFileStatsStart", {CUFILE_1150, CUDA_0, CUDA_0}},
144+
{"cuFileStatsStop", {CUFILE_1150, CUDA_0, CUDA_0}},
145+
{"cuFileStatsReset", {CUFILE_1150, CUDA_0, CUDA_0}},
146+
{"cuFileGetStatsL1", {CUFILE_1150, CUDA_0, CUDA_0}},
147+
{"cuFileGetStatsL2", {CUFILE_1150, CUDA_0, CUDA_0}},
148+
{"cuFileGetStatsL3", {CUFILE_1150, CUDA_0, CUDA_0}},
149+
{"cuFileGetBARSizeInKB", {CUFILE_1150, CUDA_0, CUDA_0}},
150+
{"cuFileSetParameterPosixPoolSlabArray", {CUFILE_1150, CUDA_0, CUDA_0}},
151+
{"cuFileGetParameterPosixPoolSlabArray", {CUFILE_1150, CUDA_0, CUDA_0}},
152+
{"cuFileDriverGetP2PFlags", {CUFILE_1150, CUDA_0, CUDA_0}},
153+
{"cuFileDriverSetP2PFlags", {CUFILE_1150, CUDA_0, CUDA_0}},
124154
};
125155

126156
const std::map<unsigned int, llvm::StringRef> CUDA_FILE_API_SECTION_MAP {

0 commit comments

Comments
 (0)