mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-10-31 23:28:51 +01:00
14 lines
217 B
C++
14 lines
217 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;
|
|
}
|