Skip to content

Commit

Permalink
[SYCL][doc] Fix a spelling mistake in any_device_has_v aspect trait (…
Browse files Browse the repository at this point in the history
…#15503)

Fixed a mistake in the `DeviceAspectTraitDesign.md` oneAPI design
document where `any_device_has_v` was misspelled as `any_devices_has_v`.
  • Loading branch information
GeorgeWeb authored Sep 26, 2024
1 parent 71bc163 commit d1967aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sycl/doc/design/DeviceAspectTraitDesign.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ to generate test cases, ensuring that specializations exist for all aspects:
```c++
#define __SYCL_ASPECT(ASPECT, ASPECT_VAL) \
constexpr bool CheckAnyDeviceHas##ASPECT = any_devices_has_v<aspect::ASPECT>; \
constexpr bool CheckAnyDeviceHas##ASPECT = any_device_has_v<aspect::ASPECT>; \
constexpr bool CheckAllDevicesHave##ASPECT = all_devices_have_v<aspect::ASPECT>;
#include <sycl/info/aspects.def>
Expand Down

0 comments on commit d1967aa

Please sign in to comment.