@@ -98,11 +98,10 @@ void print_device_detail(int id, sycl::device &device, std::string device_type)
98
98
name = std::regex_replace (name, std::regex (" \\ (TM\\ )" ), " " );
99
99
100
100
auto global_mem_size = prop.get_global_mem_size ()/1000000 ;
101
- std::string xmx = gpu_has_xmx (device) ? " yes" : " no" ;
102
- GGML_LOG_INFO (" |%2d|%19s|%39s|%7s|%7d|%8d|%5d|%6luM|%21s|%14s|\n " , id, device_type.c_str (),
101
+ GGML_LOG_INFO (" |%2d|%19s|%39s|%7s|%7d|%8d|%5d|%6luM|%21s|\n " , id, device_type.c_str (),
103
102
name.c_str (), version.c_str (), prop.get_max_compute_units (),
104
103
prop.get_max_work_group_size (), prop.get_max_sub_group_size (),
105
- global_mem_size, device.get_info <sycl::info::device::driver_version>().c_str (), xmx. c_str () );
104
+ global_mem_size, device.get_info <sycl::info::device::driver_version>().c_str ());
106
105
}
107
106
108
107
void ggml_backend_sycl_print_sycl_devices () {
@@ -113,16 +112,16 @@ void ggml_backend_sycl_print_sycl_devices() {
113
112
114
113
GGML_LOG_INFO (
115
114
" | | | | "
116
- " |Max | |Max |Global | | XMX | \n " );
115
+ " |Max | |Max |Global | |\n " );
117
116
GGML_LOG_INFO (
118
117
" | | | | "
119
- " |compute|Max work|sub |mem | | or | \n " );
118
+ " |compute|Max work|sub |mem | |\n " );
120
119
GGML_LOG_INFO (
121
120
" |ID| Device Type| "
122
- " Name|Version|units |group |group|size | Driver version| Tensor Cores | \n " );
121
+ " Name|Version|units |group |group|size | Driver version|\n " );
123
122
GGML_LOG_INFO (
124
123
" |--|-------------------|---------------------------------------|------"
125
- " -|-------|--------|-----|-------|---------------------|--------------| \n " );
124
+ " -|-------|--------|-----|-------|---------------------|\n " );
126
125
127
126
for (int id = 0 ; id < device_count; ++id) {
128
127
sycl::device device = dpct::dev_mgr::instance ().get_device (id);
0 commit comments