An open API service indexing awesome lists of open source software.

https://github.com/epinter/adlxwrapper

AMD ADLX Wrapper for C#
https://github.com/epinter/adlxwrapper

Last synced: 7 months ago
JSON representation

AMD ADLX Wrapper for C#

Awesome Lists containing this project

README

          

## ADLX Wrapper for C#

This is a POC of a wrapper for 'AMD Device Library eXtra', without the need of C, C++, the SDK or SWIG. Pure C# in a single source file, see AmdAdlx.cs. Designed for use with 'using' block, or try-finally, for the Dispose to be called and release the pointers in adlx library.

### Console usage
- Run a infinite loop making gpu readings, no interval. Without fps counter or adl mapping. Useful to find memory leaks. **ONLY reads, nothing is written to the driver**.
```
adlxwrapper-console.exe loop nofps noadl
```

- Normal execution with debug messages, shows metrics, gpu info, features support, etc. Without adl mapping.
```
adlxwrapper-console.exe debug noadl
```

- Normal execution with debug messages, shows metrics, gpu info, features support, etc.
```
adlxwrapper-console.exe debug
```

- Normal execution with debug messages, set fans rpm.
```
adlxwrapper-console.exe debug setrpm
```