Felipe97/llama-cpp-compiled
01.1k
1//2// MIT license3// Copyright (C) 2024 Intel Corporation4// SPDX-License-Identifier: MIT5//6 7 8#include "ggml-sycl.h"9#include <clocale>10 11int main() {12 std::setlocale(LC_NUMERIC, "C");13 ggml_backend_sycl_print_sycl_devices();14 return 0;15}16 