Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Explicit namespace reference #904

Merged
merged 1 commit into from
Mar 8, 2022
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/ESIMD/BitonicSortKv2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,8 @@ int main(int argc, char *argv[]) {
int size = 1 << LOG2_ELEMENTS;
cout << "BitonicSort (" << size << ") Start..." << std::endl;

cl::sycl::property_list props{property::queue::enable_profiling{},
property::queue::in_order()};
cl::sycl::property_list props{cl::sycl::property::queue::enable_profiling{},
cl::sycl::property::queue::in_order()};

queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
props);
Expand Down
2 changes: 1 addition & 1 deletion SYCL/ESIMD/histogram_256_slm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int CheckHistogram(unsigned int *cpu_histogram, unsigned int *gpu_histogram) {

int main() {
queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
property::queue::enable_profiling{});
cl::sycl::property::queue::enable_profiling{});

const char *input_file = nullptr;
unsigned int width = 1024;
Expand Down
2 changes: 1 addition & 1 deletion SYCL/ESIMD/histogram_256_slm_spec_2020.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class histogram_slm;

int main(int argc, char **argv) {
queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
property::queue::enable_profiling{});
cl::sycl::property::queue::enable_profiling{});
auto dev = q.get_device();
auto ctxt = q.get_context();

Expand Down
2 changes: 1 addition & 1 deletion SYCL/ESIMD/histogram_raw_send.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int main(int argc, char *argv[]) {

// Allocate Input Buffer
queue q(esimd_test::ESIMDSelector{}, esimd_test::createExceptionHandler(),
property::queue::enable_profiling{});
cl::sycl::property::queue::enable_profiling{});

auto dev = q.get_device();
auto ctxt = q.get_context();
Expand Down