@cloud-ru/uikit-product-calculator 1.9.4 → 1.9.5
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/CHANGELOG.md +11 -0
- package/dist/cjs/config/platforms/evolution/product-config/EvolutionCloudServer.js +3 -3
- package/dist/esm/config/platforms/evolution/product-config/EvolutionCloudServer.js +3 -3
- package/package.json +2 -2
- package/src/config/platforms/evolution/product-config/EvolutionCloudServer.tsx +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 1.9.5 (2026-06-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **SITE-11329:** fix flavor eco compute ([53e99f8](https://github.com/cloud-ru-tech/uikit-product/commit/53e99f83985a5752cbf67355d86a904acdf1924d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 1.9.4 (2026-06-08)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -108,9 +108,9 @@ const CPU_BY_MODEL_AND_GPU = {
|
|
|
108
108
|
};
|
|
109
109
|
const RAN_BY_MODEL_AND_GPU = {
|
|
110
110
|
[NVIDIA_A100_40GB.value]: {
|
|
111
|
-
'1': [
|
|
112
|
-
'2': [
|
|
113
|
-
'4': [
|
|
111
|
+
'1': [220],
|
|
112
|
+
'2': [440],
|
|
113
|
+
'4': [880],
|
|
114
114
|
},
|
|
115
115
|
[NVIDIA_A100_80GB.value]: {
|
|
116
116
|
'1': [125],
|
|
@@ -105,9 +105,9 @@ const CPU_BY_MODEL_AND_GPU = {
|
|
|
105
105
|
};
|
|
106
106
|
const RAN_BY_MODEL_AND_GPU = {
|
|
107
107
|
[NVIDIA_A100_40GB.value]: {
|
|
108
|
-
'1': [
|
|
109
|
-
'2': [
|
|
110
|
-
'4': [
|
|
108
|
+
'1': [220],
|
|
109
|
+
'2': [440],
|
|
110
|
+
'4': [880],
|
|
111
111
|
},
|
|
112
112
|
[NVIDIA_A100_80GB.value]: {
|
|
113
113
|
'1': [125],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-calculator",
|
|
3
3
|
"title": "Calculator",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.5",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
7
7
|
"*.woff",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/lodash": "4.17.13"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "8720b9b1fe90fe9474e4ef5fe1015fe957938f09"
|
|
75
75
|
}
|
|
@@ -115,9 +115,9 @@ const CPU_BY_MODEL_AND_GPU: { [model: string]: { [gpu: string]: number[] } } = {
|
|
|
115
115
|
|
|
116
116
|
const RAN_BY_MODEL_AND_GPU: { [model: string]: { [gpu: string]: number[] } } = {
|
|
117
117
|
[NVIDIA_A100_40GB.value]: {
|
|
118
|
-
'1': [
|
|
119
|
-
'2': [
|
|
120
|
-
'4': [
|
|
118
|
+
'1': [220],
|
|
119
|
+
'2': [440],
|
|
120
|
+
'4': [880],
|
|
121
121
|
},
|
|
122
122
|
[NVIDIA_A100_80GB.value]: {
|
|
123
123
|
'1': [125],
|