Skip to content

FPGA compile update - fix compile problem with USM device check #1402

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 9 commits into from
Mar 3, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ int main() {
<< device.get_info<sycl::info::device::name>().c_str()
<< std::endl;

if (!device.has(aspect::usm_host_allocations)) {
if (!device.has(sycl::aspect::usm_host_allocations)) {
std::terminate();
}

Expand Down