Commit e135a1a
Fix OSX arm64 nightly: bump libopenblas from 0.3.33 to 0.3.34 (#5538)
Summary:
Pull Request resolved: #5538
The `OSX arm64 nightlies` job has been failing to solve the `libfaiss`
environment since D115218647:
```
ExplainedDependencyNeedsBuildingError: Unsatisfiable dependencies for platform osx-arm64: {MatchSpec("openblas==0.3.34=openmp_hea878ba_0")}
- package libopenblas-0.3.33-pthreads_hddb8425_0 has constraint
openblas >=0.3.33,<0.3.34.0a0 conflicting with openblas-0.3.34-openmp_hea878ba_0
```
`conda/faiss/meta.yaml` pins both outputs of the OpenBLAS feedstock, and on
osx-arm64 both selectors apply at once: `openblas =0.3.34 # [not x86_64]` and
`libopenblas =0.3.33 # [osx]`. Since `libopenblas 0.3.33` constrains
`openblas >=0.3.33,<0.3.34.0a0`, the two specs are mutually exclusive and the
recipe can never solve.
D115218647 bumped `openblas` to 0.3.34 to get `Linux arm64 (conda)` green and
left the osx `libopenblas` pins at 0.3.33 on the grounds that that package was
resolving fine. It was — in isolation. But the two pins are version-coupled, so
the bump broke Mac. The pins also land on different platforms, which is why only
OSX fails: `# [not x86_64]` gives linux-arm64 the `openblas` pin on its own.
Bump the six osx `libopenblas` pins to 0.3.34 so both feedstock outputs agree.
This matches how the same breakage was fixed the last time `openblas` moved:
D98293081 bumped `openblas` 0.3.30 to 0.3.32 and broke this job, D98718117 fixed
it by bumping `libopenblas` to match, and D104902441 moved both together when
going 0.3.32 to 0.3.33 and stayed green.
Reverting `openblas` to 0.3.33 is not an option here — it would re-break
`linux-arm64-nightly`.
The GPU recipes need no change: they carry no osx `libopenblas` pins, since GPU
builds are Linux-only.
Reviewed By: junjieqi
Differential Revision: D117300512
fbshipit-source-id: fe55ef37f4a3054689eacb2f7f64a21ff1d1e8b21 parent 7059eaf commit e135a1a
1 file changed
Lines changed: 6 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | | - | |
| 73 | + | |
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
| |||
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | | - | |
| 87 | + | |
88 | 88 | | |
89 | 89 | | |
90 | 90 | | |
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
125 | | - | |
| 125 | + | |
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
| |||
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
141 | | - | |
| 141 | + | |
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
| |||
153 | 153 | | |
154 | 154 | | |
155 | 155 | | |
156 | | - | |
| 156 | + | |
157 | 157 | | |
158 | 158 | | |
159 | 159 | | |
| |||
0 commit comments