@@ -197,6 +197,28 @@ jobs:
197197 toolchain_artifact_filename : ${{ needs.ubuntu2404_oneapi_build.outputs.toolchain_artifact_filename }}
198198 toolchain_decompress_command : ${{ needs.ubuntu2404_oneapi_build.outputs.toolchain_decompress_command }}
199199
200+ e2e-with-new-offload-model :
201+ needs : [ubuntu2204_build]
202+ if : ${{ !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
203+ strategy :
204+ fail-fast : false
205+ uses : ./.github/workflows/sycl-linux-run-tests.yml
206+ permissions :
207+ contents : write
208+ packages : read
209+ with :
210+ name : " E2E with enabled NewOffloadModel"
211+ runner : ${{ inputs.runner }}
212+ image_options : ${{ inputs.image_options }}
213+ tests_selector : e2e
214+ testing_mode : ${{ inputs.testing_mode }}
215+ target_devices : ${{ inputs.target_devices }}
216+ extra_lit_opts : " --param enable_new_offload_model=True"
217+ tests_ref : ${{ github.sha }}
218+ toolchain_artifact : ${{ needs.ubuntu2204_build.outputs.toolchain_artifact }}
219+ toolchain_artifact_filename : ${{ needs.ubuntu2204_build.outputs.toolchain_artifact_filename }}
220+ toolchain_decompress_command : ${{ needs.ubuntu2204_build.outputs.toolchain_decompress_command }}
221+
200222 build-win :
201223 needs : get_date
202224 uses : ./.github/workflows/sycl-windows-build.yml
@@ -239,6 +261,22 @@ jobs:
239261 target_devices : ${{ matrix.target_devices }}
240262 toolchain_artifact_filename : ${{ needs.build-win.outputs.toolchain_artifact_filename }}
241263
264+ e2e-win-with-new-offload-model :
265+ needs : [build-win]
266+ if : ${{ !cancelled() && needs.build-win.outputs.build_conclusion == 'success' }}
267+ strategy :
268+ fail-fast : false
269+ uses : ./.github/workflows/sycl-windows-run-tests.yml
270+ permissions : read-all
271+ with :
272+ name : " E2E Windows with enabled NewOffloadModel"
273+ runner : ' ["Windows", arc"]'
274+ tests_selector : e2e
275+ testing_mode : ${{ inputs.testing_mode }}
276+ target_devices : level_zero:gpu
277+ extra_lit_opts : " --param enable_new_offload_model=True"
278+ toolchain_artifact_filename : ${{ needs.build-win.outputs.toolchain_artifact_filename }}
279+
242280 cuda-aws-start :
243281 needs : [ubuntu2204_build]
244282 if : ${{ !cancelled() && needs.ubuntu2204_build.outputs.build_conclusion == 'success' }}
0 commit comments