tencentcloud-sdk-nodejs-tke 4.1.23 → 4.1.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1835,22 +1835,22 @@ export interface UpdateEKSContainerInstanceRequest {
|
|
|
1835
1835
|
* cuDNN的版本信息
|
|
1836
1836
|
*/
|
|
1837
1837
|
export interface CUDNN {
|
|
1838
|
-
/**
|
|
1839
|
-
* cuDNN的版本
|
|
1840
|
-
*/
|
|
1841
|
-
Version: string;
|
|
1842
1838
|
/**
|
|
1843
1839
|
* cuDNN的名字
|
|
1844
1840
|
*/
|
|
1845
1841
|
Name: string;
|
|
1846
1842
|
/**
|
|
1847
|
-
* cuDNN
|
|
1843
|
+
* cuDNN的版本
|
|
1848
1844
|
*/
|
|
1849
|
-
|
|
1845
|
+
Version: string;
|
|
1850
1846
|
/**
|
|
1851
1847
|
* cuDNN的Dev名字
|
|
1852
1848
|
*/
|
|
1853
1849
|
DevName?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* cuDNN的Doc名字
|
|
1852
|
+
*/
|
|
1853
|
+
DocName?: string;
|
|
1854
1854
|
}
|
|
1855
1855
|
/**
|
|
1856
1856
|
* DescribeReservedInstances返回参数结构体
|
|
@@ -4340,14 +4340,14 @@ export interface UpgradeNodeResetParam {
|
|
|
4340
4340
|
* GPU驱动和CUDA的版本信息
|
|
4341
4341
|
*/
|
|
4342
4342
|
export interface DriverVersion {
|
|
4343
|
-
/**
|
|
4344
|
-
* GPU驱动或者CUDA的版本
|
|
4345
|
-
*/
|
|
4346
|
-
Version: string;
|
|
4347
4343
|
/**
|
|
4348
4344
|
* GPU驱动或者CUDA的名字
|
|
4349
4345
|
*/
|
|
4350
4346
|
Name: string;
|
|
4347
|
+
/**
|
|
4348
|
+
* GPU驱动或者CUDA的版本
|
|
4349
|
+
*/
|
|
4350
|
+
Version: string;
|
|
4351
4351
|
}
|
|
4352
4352
|
/**
|
|
4353
4353
|
* CreateClusterInstances请求参数结构体
|
|
@@ -12633,14 +12633,6 @@ export interface PrometheusTemplate {
|
|
|
12633
12633
|
* GPU相关的参数,包括驱动版本,CUDA版本,cuDNN版本以及是否开启MIG
|
|
12634
12634
|
*/
|
|
12635
12635
|
export interface GPUArgs {
|
|
12636
|
-
/**
|
|
12637
|
-
* 是否启用MIG特性
|
|
12638
|
-
*/
|
|
12639
|
-
MIGEnable?: boolean;
|
|
12640
|
-
/**
|
|
12641
|
-
* GPU驱动版本信息
|
|
12642
|
-
*/
|
|
12643
|
-
Driver?: DriverVersion;
|
|
12644
12636
|
/**
|
|
12645
12637
|
* CUDA版本信息
|
|
12646
12638
|
*/
|
|
@@ -12653,6 +12645,14 @@ export interface GPUArgs {
|
|
|
12653
12645
|
* 自定义GPU驱动信息
|
|
12654
12646
|
*/
|
|
12655
12647
|
CustomDriver?: CustomDriver;
|
|
12648
|
+
/**
|
|
12649
|
+
* GPU驱动版本信息
|
|
12650
|
+
*/
|
|
12651
|
+
Driver?: DriverVersion;
|
|
12652
|
+
/**
|
|
12653
|
+
* 是否启用MIG特性
|
|
12654
|
+
*/
|
|
12655
|
+
MIGEnable?: boolean;
|
|
12656
12656
|
}
|
|
12657
12657
|
/**
|
|
12658
12658
|
* 路由表冲突对象
|