Skip to content
Snippets Groups Projects
Unverified Commit 6d6c1853 authored by fireice-uk's avatar fireice-uk Committed by GitHub
Browse files

Merge pull request #101 from psychocrypt/topuc-amdTuning

AMD: increase memory pool
parents 21b9863d 350158a6
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@
* [AMD Backend](#amd-backend)
* [Choose `intensity` and `worksize`](#choose-intensity-and-worksize)
* [Add more GPUs](#add-more-gpus)
* [Increase Memory Pool](#increase-memory-pool)
## NVIDIA Backend
......@@ -66,3 +67,17 @@ If you are unsure of either GPU or platform index value, you can use `clinfo` to
"platform_index" : 0,
```
### Increase Memory Pool
By setting the following environment variables before the miner is started OpenCl allows the miner to more threads.
This variables must be set each time before the miner is started else it could be that the miner can not allocate enough memory and is crashing.
```
export GPU_FORCE_64BIT_PTR=1
export GPU_MAX_HEAP_SIZE=99
export GPU_MAX_ALLOC_PERCENT=99
export GPU_SINGLE_ALLOC_PERCENT=99
```
*Note:* Windows user must use `set` instead of `export` to define an environment variable.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment