Spaces:
Running on Zero
Running on Zero
File size: 251 Bytes
7b49da7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | //
// MIT license
// Copyright (C) 2024 Intel Corporation
// SPDX-License-Identifier: MIT
//
#include "ggml-sycl.h"
#include <clocale>
int main() {
std::setlocale(LC_NUMERIC, "C");
ggml_backend_sycl_print_sycl_devices();
return 0;
}
|