diff --git a/i18n/zh/docusaurus-plugin-content-docs/version-v2.7.0/developers/scheduling.md b/i18n/zh/docusaurus-plugin-content-docs/version-v2.7.0/developers/scheduling.md index b8d126999..87b2528a0 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/version-v2.7.0/developers/scheduling.md +++ b/i18n/zh/docusaurus-plugin-content-docs/version-v2.7.0/developers/scheduling.md @@ -157,7 +157,7 @@ GPU2 Score: ((20+70)/100 + (1000+6000)/8000)) * 10 = 17.75 #### Spread -Spread 主要关注每张卡的计算能力和显存使用情况。使用越少,得分越高。 +Spread 优先选择设备利用率得分较低的卡。使用相同的默认权重示例: ```text score: ((request.core + used.core) / allocatable.core + (request.mem + used.mem) / allocatable.mem)) * 10 diff --git a/i18n/zh/docusaurus-plugin-content-docs/version-v2.8.0/developers/scheduling.md b/i18n/zh/docusaurus-plugin-content-docs/version-v2.8.0/developers/scheduling.md index ead160004..4a215fbb9 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/version-v2.8.0/developers/scheduling.md +++ b/i18n/zh/docusaurus-plugin-content-docs/version-v2.8.0/developers/scheduling.md @@ -157,7 +157,7 @@ GPU2 Score: ((20+70)/100 + (1000+6000)/8000)) * 10 = 17.75 #### Spread -Spread 主要关注每张卡的计算能力和显存使用情况。使用越少,得分越高。 +Spread 优先选择设备利用率得分较低的卡。使用相同的默认权重示例: ```text score: ((request.core + used.core) / allocatable.core + (request.mem + used.mem) / allocatable.mem)) * 10 diff --git a/versioned_docs/version-v2.7.0/developers/scheduling.md b/versioned_docs/version-v2.7.0/developers/scheduling.md index 2d98f6bb8..23ad218fe 100644 --- a/versioned_docs/version-v2.7.0/developers/scheduling.md +++ b/versioned_docs/version-v2.7.0/developers/scheduling.md @@ -151,7 +151,7 @@ So, in `Binpack` policy, the selected node is `GPU2`. #### Spread -Spread mainly focuses on the computing power and video memory usage of each card. The less it is used, the higher the score. +Spread prefers the card with the lower device-utilization score. Using the same example: ```text score: ((request.core + used.core) / allocatable.core + (request.mem + used.mem) / allocatable.mem)) * 10 ``` diff --git a/versioned_docs/version-v2.8.0/developers/scheduling.md b/versioned_docs/version-v2.8.0/developers/scheduling.md index 0a3f99700..bb374a824 100644 --- a/versioned_docs/version-v2.8.0/developers/scheduling.md +++ b/versioned_docs/version-v2.8.0/developers/scheduling.md @@ -157,7 +157,7 @@ In `Binpack` policy, `GPU2` is selected. #### Spread -Spread mainly focuses on the computing power and video memory usage of each card. The less it is used, the higher the score. +Spread prefers the card with the lower device-utilization score. Using the same example: ```text score: ((request.core + used.core) / allocatable.core + (request.mem + used.mem) / allocatable.mem)) * 10