Skip to content

[SYCL][ESIMD][EMU] Enumeration order fix for all/esimd_cpu #3923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sycl/include/CL/sycl/backend_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ enum class backend : char {
opencl = 1,
level_zero = 2,
cuda = 3,
esimd_cpu = 4,
all = 5
all = 4,
esimd_cpu = 5
};

template <backend Backend, typename SYCLObjectT> struct interop;
Expand Down
4 changes: 2 additions & 2 deletions sycl/test/abi/sycl_symbols_linux.dump
Original file line number Diff line number Diff line change
Expand Up @@ -3790,7 +3790,7 @@ _ZN2cl4sycl6detail18stringifyErrorCodeEi
_ZN2cl4sycl6detail19convertChannelOrderE23_pi_image_channel_order
_ZN2cl4sycl6detail19convertChannelOrderENS0_19image_channel_orderE
_ZN2cl4sycl6detail19getImageElementSizeEhNS0_18image_channel_typeE
_ZN2cl4sycl6detail19getPluginOpaqueDataILNS0_7backendE4EEEPvS4_
_ZN2cl4sycl6detail19getPluginOpaqueDataILNS0_7backendE5EEEPvS4_
_ZN2cl4sycl6detail19kernel_bundle_plain32set_specialization_constant_implEPKcPvm
_ZN2cl4sycl6detail20associateWithHandlerERNS0_7handlerEPNS1_16AccessorBaseHostENS0_6access6targetE
_ZN2cl4sycl6detail20getDeviceFromHandlerERNS0_7handlerE
Expand All @@ -3810,7 +3810,7 @@ _ZN2cl4sycl6detail2pi3dieEPKc
_ZN2cl4sycl6detail2pi9assertionEbPKc
_ZN2cl4sycl6detail2pi9getPluginILNS0_7backendE1EEERKNS1_6pluginEv
_ZN2cl4sycl6detail2pi9getPluginILNS0_7backendE2EEERKNS1_6pluginEv
_ZN2cl4sycl6detail2pi9getPluginILNS0_7backendE4EEERKNS1_6pluginEv
_ZN2cl4sycl6detail2pi9getPluginILNS0_7backendE5EEERKNS1_6pluginEv
_ZN2cl4sycl6detail6OSUtil10getDirNameB5cxx11EPKc
_ZN2cl4sycl6detail6OSUtil11alignedFreeEPv
_ZN2cl4sycl6detail6OSUtil12alignedAllocEmm
Expand Down