Skip to content

Commit

Permalink
Fix CI for AVX512 (facebookresearch#3649)
Browse files Browse the repository at this point in the history
Summary:
With the refactoring diff landed in [D59650573](https://www.internalfb.com/diff/D59650573), we take in the instance type string for aws and register it as the label for the runner. There was a typo in the previous registration (`m7i.xlarge` instead of `m7i.large`). The refactoring diff fixed the typo from the runner registration side but we need to fix it on the CI side as well so CI can find the runners

Pull Request resolved: facebookresearch#3649

Test Plan: CI's AVX512 run on Github Action should succeed instead of stuck in pending

Reviewed By: ramilbakhshyiev

Differential Revision: D59916841

Pulled By: mengdilin

fbshipit-source-id: 5403e1a449ed765f0bf1a00e4a0d81d6c97463b9
  • Loading branch information
mengdilin authored and aalekhpatel07 committed Oct 17, 2024
1 parent f666d18 commit e03da55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
name: Linux x86_64 AVX512 (cmake)
continue-on-error: true # non-blocking mode for now
needs: linux-x86_64-cmake
runs-on: faiss-aws-m7i.xlarge
runs-on: faiss-aws-m7i.large
steps:
- name: Checkout
continue-on-error: true # non-blocking mode for now
Expand Down

0 comments on commit e03da55

Please sign in to comment.