From a648d4ed7a01c0d5755a44d8aad0a45a2227409a Mon Sep 17 00:00:00 2001 From: Haifeng Yao Date: Thu, 30 Apr 2026 10:56:21 +0800 Subject: [PATCH 1/2] fix: correct grammar and spelling issues in docs - scheduling.md: Fix grammar issues - github-workflow.md: Fix github -> GitHub - ladder.md: Fix takes notes -> take notes Signed-off-by: Haifeng Yao --- docs/contributor/github-workflow.md | 6 +++--- docs/contributor/ladder.md | 2 +- docs/developers/scheduling.md | 5 ++--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/docs/contributor/github-workflow.md b/docs/contributor/github-workflow.md index 8582a392..b5d5e2ce 100644 --- a/docs/contributor/github-workflow.md +++ b/docs/contributor/github-workflow.md @@ -25,15 +25,15 @@ Define a local working directory: # If your GOPATH has multiple paths, pick # just one and use it instead of $GOPATH here. # You must follow exactly this pattern, -# neither `$GOPATH/src/github.com/${your github profile name/` +# neither `$GOPATH/src/github.com/${your GitHub profile name/` # nor any other pattern will work. export working_dir="$(go env GOPATH)/src/github.com/Project-HAMi" ``` -Set `user` to match your github profile name: +Set `user` to match your GitHub profile name: ```sh -export user={your github profile name} +export user={your GitHub profile name} ``` Both `$working_dir` and `$user` are mentioned in the figure above. diff --git a/docs/contributor/ladder.md b/docs/contributor/ladder.md index 5ffde51b..253710fb 100644 --- a/docs/contributor/ladder.md +++ b/docs/contributor/ladder.md @@ -35,7 +35,7 @@ Description: A Contributor contributes directly to the project and adds value to * Report and sometimes resolve issues * Occasionally submit PRs * Contribute to the documentation - * Show up at meetings, takes notes + * Show up at meetings, take notes * Answer questions from other community members * Submit feedback on issues and PRs * Test releases and patches and submit reviews diff --git a/docs/developers/scheduling.md b/docs/developers/scheduling.md index 71053273..f58fa4d2 100644 --- a/docs/developers/scheduling.md +++ b/docs/developers/scheduling.md @@ -4,12 +4,11 @@ title: Scheduler Policy ## Summary -Current in a cluster with many GPU nodes, nodes are not `binpack` or `spread` when making scheduling decisions, nor are GPU cards `binpack` or `spread` when using vGPU. +Currently in a cluster with many GPU nodes, nodes are not `binpack` or `spread` when making scheduling decisions, nor are GPU cards `binpack` or `spread` when using vGPU. ## Proposal -We add a `node-scheduler-policy` and `gpu-scheduler-policy` to config, then scheduler to use this policy can impl node `binpack` or `spread` or GPU `binpack` or `spread`. and -use can set Pod annotation to change this default policy, use `hami.io/node-scheduler-policy` and `hami.io/gpu-scheduler-policy` to overlay scheduler config. +We add a `node-scheduler-policy` and `gpu-scheduler-policy` to config, then the scheduler can use this policy to implement node `binpack` or `spread` or GPU `binpack` or `spread`. Users can also set Pod annotation to change this default policy, use `hami.io/node-scheduler-policy` and `hami.io/gpu-scheduler-policy` to overlay scheduler config. ### User Stories From c2d576b98fefcc323df7d04562a0786e3732fd3f Mon Sep 17 00:00:00 2001 From: Michael Yao Date: Thu, 30 Apr 2026 13:31:23 +0800 Subject: [PATCH 2/2] Fix capitalization in GitHub profile name instructions Signed-off-by: windsonsea --- docs/contributor/github-workflow.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributor/github-workflow.md b/docs/contributor/github-workflow.md index b5d5e2ce..8582a392 100644 --- a/docs/contributor/github-workflow.md +++ b/docs/contributor/github-workflow.md @@ -25,15 +25,15 @@ Define a local working directory: # If your GOPATH has multiple paths, pick # just one and use it instead of $GOPATH here. # You must follow exactly this pattern, -# neither `$GOPATH/src/github.com/${your GitHub profile name/` +# neither `$GOPATH/src/github.com/${your github profile name/` # nor any other pattern will work. export working_dir="$(go env GOPATH)/src/github.com/Project-HAMi" ``` -Set `user` to match your GitHub profile name: +Set `user` to match your github profile name: ```sh -export user={your GitHub profile name} +export user={your github profile name} ``` Both `$working_dir` and `$user` are mentioned in the figure above.