2024-01-31 21:04:46 +08:00
|
|
|
//
|
|
|
|
|
// MIT license
|
|
|
|
|
// Copyright (C) 2024 Intel Corporation
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
//
|
|
|
|
|
|
2024-01-28 21:26:23 +05:30
|
|
|
|
|
|
|
|
#include "ggml-sycl.h"
|
2026-03-04 02:30:40 -06:00
|
|
|
#include <clocale>
|
2024-01-28 21:26:23 +05:30
|
|
|
|
2024-03-02 19:49:30 +08:00
|
|
|
int main() {
|
2026-03-04 02:30:40 -06:00
|
|
|
std::setlocale(LC_NUMERIC, "C");
|
2024-01-28 21:26:23 +05:30
|
|
|
ggml_backend_sycl_print_sycl_devices();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|