Commit ceecc9e
[ET-VK][ez] Fix conv2d_gemm_dynamic_test build against updated XNNPACK API
XNNPACK updated two f32 conv2d entry points and `conv2d_gemm_dynamic_test.cpp` still called the old signatures, breaking the build (and thus the `etvk-eureka-tests` CI workflow). `xnn_create_convolution2d_nhwc_f32` gained an `xnn_code_cache_t code_cache` parameter before `weights_cache` (22 -> 23 args), and `xnn_reshape_convolution2d_nhwc_f32` gained a `size_t* workspace_alignment` out-param after `workspace_size` (8 -> 9 args). Updated both call sites: pass `nullptr` for `code_cache`, and pass `&workspace_alignment` (now written back by XNNPACK).
Differential Revision: [D111934764](https://our.internmc.facebook.com/intern/diff/D111934764/)
ghstack-source-id: 402834443
Pull-Request: #209101 parent 0b51017 commit ceecc9e
1 file changed
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
| 250 | + | |
250 | 251 | | |
251 | 252 | | |
252 | 253 | | |
| |||
257 | 258 | | |
258 | 259 | | |
259 | 260 | | |
260 | | - | |
| 261 | + | |
261 | 262 | | |
262 | 263 | | |
263 | 264 | | |
| |||
266 | 267 | | |
267 | 268 | | |
268 | 269 | | |
| 270 | + | |
269 | 271 | | |
270 | 272 | | |
271 | 273 | | |
| |||
0 commit comments