1#ifndef SYCL_HW_HPP
2#define SYCL_HW_HPP
3
4#include <algorithm>
5#include <stdio.h>
6#include <vector>
7#include <map>
8
9#include <sycl/sycl.hpp>
10
11namespace syclex = sycl::ext::oneapi::experimental;
12
13// TODO: currently not used
14/*
15struct sycl_hw_info {
16 syclex::architecture arch;
17 int32_t device_id;
18};
19
20bool is_in_vector(std::vector<int> &vec, int item);
21
22sycl_hw_info get_device_hw_info(sycl::device *device_ptr);
23*/
24
25
26#endif // SYCL_HW_HPP