diff options
author | Neo Zhang Jianyu <jianyu.zhang@intel.com> | 2024-03-02 19:49:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 19:49:30 +0800 |
commit | 715641391dda1ff9762dc5d99d9a30acce99f2c6 (patch) | |
tree | e57b359034b61f8d3ea4de372c2c3c0ec885c943 /examples/sycl/ls-sycl-device.cpp | |
parent | 9bf297a02bfbd474e51912409a470dd797e2fe13 (diff) |
Support multiple GPUs (split mode) on SYCL backend (#5806)
* suport multiple cards: split-mode - layer|row
* rm warning
* rebase with master, support tow new OPs, close feature for -sm=row, fix for unit test
* update news
* fix merge error
* update according to review comments
Diffstat (limited to 'examples/sycl/ls-sycl-device.cpp')
-rw-r--r-- | examples/sycl/ls-sycl-device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sycl/ls-sycl-device.cpp b/examples/sycl/ls-sycl-device.cpp index 52442e4c..74a8b7fd 100644 --- a/examples/sycl/ls-sycl-device.cpp +++ b/examples/sycl/ls-sycl-device.cpp @@ -7,7 +7,7 @@ #include "ggml-sycl.h" -int main(int argc, char ** argv) { +int main() { ggml_backend_sycl_print_sycl_devices(); return 0; } |