Commit 7f49367
authored
[SYCL] Fix accessor fill for unsupported patterns (#8845)
Currently most of the PI backends have similar pattern limitations as
OpenCL, i.e. only certain sizes of patterns are supported. This is not
currently being considered by the implementation however, potentially
causing the backend calls to fail. This commit makes the runtime fall
back to a fill kernel if the pattern has an unsupported size.
Signed-off-by: Larsen, Steffen <[email protected]>1 parent 797187d commit 7f49367
File tree
2 files changed
+98
-5
lines changed- sycl
- include/sycl
- test-e2e/Basic
2 files changed
+98
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
913 | 913 | | |
914 | 914 | | |
915 | 915 | | |
| 916 | + | |
| 917 | + | |
| 918 | + | |
| 919 | + | |
| 920 | + | |
| 921 | + | |
916 | 922 | | |
917 | 923 | | |
918 | 924 | | |
| |||
2392 | 2398 | | |
2393 | 2399 | | |
2394 | 2400 | | |
| 2401 | + | |
| 2402 | + | |
2395 | 2403 | | |
2396 | 2404 | | |
2397 | 2405 | | |
2398 | 2406 | | |
2399 | 2407 | | |
2400 | 2408 | | |
2401 | 2409 | | |
2402 | | - | |
2403 | | - | |
| 2410 | + | |
| 2411 | + | |
2404 | 2412 | | |
2405 | 2413 | | |
2406 | 2414 | | |
| |||
2414 | 2422 | | |
2415 | 2423 | | |
2416 | 2424 | | |
2417 | | - | |
2418 | | - | |
2419 | | - | |
2420 | 2425 | | |
2421 | 2426 | | |
2422 | 2427 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
0 commit comments