mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-20 13:13:07 +00:00
11 lines
216 B
C++
11 lines
216 B
C++
|
/*MIT license
|
||
|
Copyright (C) 2024 Intel Corporation
|
||
|
SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
#include "ggml-sycl.h"
|
||
|
|
||
|
int main(int argc, char ** argv) {
|
||
|
ggml_backend_sycl_print_sycl_devices();
|
||
|
return 0;
|
||
|
}
|