Skip to content

Commit

Permalink
Reduce default grid size for acceptable job swiitch time
Browse files Browse the repository at this point in the history
- Previous default resulted in avg. 400 ms. job switch time.
- Reduce default grid size to achieve about 50 ms. job switch
  time.
- No performance impact.
- CUDA only update.
  • Loading branch information
jean-m-cyr committed Jan 19, 2019
1 parent 6567b9c commit 3b5d220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libethcore/Miner.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct CUSettings : public MinerSettings
{
unsigned streams = 2;
unsigned schedule = 4;
unsigned gridSize = 2048;
unsigned gridSize = 256;
unsigned blockSize = 512;
unsigned parallelHash = 4;
};
Expand Down

0 comments on commit 3b5d220

Please sign in to comment.