Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anteru/openclinfo
https://github.com/anteru/openclinfo
opencl
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/anteru/openclinfo
- Owner: Anteru
- License: bsd-2-clause
- Created: 2020-11-23T14:26:01.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-28T19:45:55.000Z (almost 4 years ago)
- Last Synced: 2023-09-07T02:49:01.649Z (about 1 year ago)
- Topics: opencl
- Language: C++
- Homepage: https://sh13.net/projects/clinfo/
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# OpenCL Info #
This is a simple tool to gather diagnostic information about the available OpenCL platforms. It consists of three parts: ``lib`` which is a static library that gathers the information, ``cli`` which is a simple command line wrapper that can format the output as Xml, Json or plain text and ``ui`` which is a graphical frontend for the data.
## License
Licensed under the 2-clause BSD. See ``LICENSE.txt`` for details.
## Requirements
A working OpenCL implementation and a recent C++ compiler. Tested with MSVC 2013, GCC 4.8 and Clang 3.4. Older versions of MSVC might not work. GCC was set to `-std=c++11`. Notice that you can get MSVC 2013 for free (http://www.visualstudio.com/products/visual-studio-community-vs).
## Changelog
1.0.1
-----* Fixed ``clContext`` not being released.
* Improved error handling.
* Fixed superfluous spaces in the version string not being handled correctly.1.0.0
-----* Initial release