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