Merge Dev#945
Conversation
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0906bd28-cdb2-4726-a081-6f5f2cfd4be8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0defa7b7-5960-49af-a11c-4ac022b1de3b Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0906bd28-cdb2-4726-a081-6f5f2cfd4be8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0defa7b7-5960-49af-a11c-4ac022b1de3b Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0defa7b7-5960-49af-a11c-4ac022b1de3b Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0defa7b7-5960-49af-a11c-4ac022b1de3b Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0defa7b7-5960-49af-a11c-4ac022b1de3b Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/0906bd28-cdb2-4726-a081-6f5f2cfd4be8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/cfe8d294-b592-4e55-8426-2f149ef5fa8a Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/644f47fc-1f3f-449f-aa3f-7729e00917f6 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
…o paths Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/ba1972b6-4727-4736-810f-1426a0d6ccd8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/ba1972b6-4727-4736-810f-1426a0d6ccd8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Support bert in mlcommons cpp implementation, add pytorch backend
…/meta.yaml [skip ci]
…path Default sudo CUDA installs to `/opt/mlc-installs`, auto-discover shared toolkit path, use `is_true` for sudo detection, and add `meta.yaml` tests
…-nvidia-models Support Nvidia scratch cleanup across all model variations with convention-compliant artifact variation names
…tch-space/meta.yaml [skip ci]
…sults repos (including org-scoped layouts) (#910)
…y/meta.yaml [skip ci]
…cker-in-Docker workflows (#913)
* Added fixes for rocm build from src * Updated readmes/linted meta * Use compiler-rt as runtime * Fix libboost dependency for aocl-data-analytics * Support different compilers for cp2k Added benchmark-hpc script Fixed the uid for get-xpu-devices
|
MLCommons CLA bot: |
arjunsuresh
left a comment
There was a problem hiding this comment.
@copilot can you change the commit from amd-arsuresh and Arjun to arjunsuresh
Agent-Logs-Url: https://github.com/mlcommons/mlperf-automations/sessions/3b3e4a8d-524e-443d-ab7a-3c2e65ca8bf8 Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
|
@copilot thats not enough. I want to modify the users for the commits in this PR as told |
Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
Co-authored-by: arjunsuresh <4791823+arjunsuresh@users.noreply.github.com>
I attempted a full author rewrite locally, but updating existing commit users requires a force-push of rewritten history, and this environment can only do normal pushes. So I can’t apply that rewrite to this PR branch from here. If you can force-push, I can provide the exact rewrite command/script to run. |
|
@copilot can you push to a new branch? |
I can prepare the rewritten history on a new local branch, but from this environment I can only push updates to |
|
@copilot okay. I can do that |
|
@copilot where are the instructions? |
Use these commands locally to rewrite this PR’s commit author/committer and push a new branch: # from your PR branch
BASE=$(git merge-base origin/dev HEAD)
git checkout -b rewrite-authors-arjunsuresh
git filter-branch -f --env-filter '
if [ "$GIT_AUTHOR_NAME" = "amd-arsuresh" ] || [ "$GIT_AUTHOR_NAME" = "Arjun" ]; then
GIT_AUTHOR_NAME="arjunsuresh"
fi
if [ "$GIT_AUTHOR_EMAIL" = "arsuresh@amd.com" ] || [ "$GIT_AUTHOR_EMAIL" = "arjunsuresh1987@gmail.com" ]; then
GIT_AUTHOR_EMAIL="arjunsuresh1987@gmail.com"
fi
if [ "$GIT_COMMITTER_NAME" = "amd-arsuresh" ] || [ "$GIT_COMMITTER_NAME" = "Arjun" ]; then
GIT_COMMITTER_NAME="arjunsuresh"
fi
if [ "$GIT_COMMITTER_EMAIL" = "arsuresh@amd.com" ] || [ "$GIT_COMMITTER_EMAIL" = "arjunsuresh1987@gmail.com" ]; then
GIT_COMMITTER_EMAIL="arjunsuresh1987@gmail.com"
fi
export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL
' "$BASE"..HEAD
git push --force-with-lease origin HEAD:rewrite-authors-arjunsureshThen open a PR from |
🧾 PR Checklist
dev📌 Note: PRs must be raised against
dev. Do not commit directly tomain.📁 File Hygiene & Output Handling
📝 Comments & Communication
Fixes #,Related to #, etc.)🛡️ Safety & Security