Can anyone give me some advice on configuring the gpu plotter devices.txt file for an RX580 8GB? Right now it is slower than my RX 550...
Using the Windows GPU Plotter:
1) open the newly created "gpuPlotGenerator-bin-win-x86-2.0.0" folder that was created in the previous step
2) In an empty space within the "gpuPlotGenerator-bin-win-x86-2.0.0" folder do the following:
Hold down the "shift" key and right-click in an empty spot. Select "Open command window here"
(Note: the "Open command window here" option is only available if you hold Shift and Right-Click)
(Alternatively, you could just open a command window manually and do a "CD" to the folder containing the gpuPlotGenerator.exe file)
3) Run the following command to list the GPU's Platform and Platform ID:
Code:
gpuPlotGenerator.exe list platforms
Note down the "ID" number for the proper device platform, this number will be <platformId> in the next step
Example:
4) Run the following commands to find the DeviceID's of the device in your system, replacing <platformId> with the number you noted down in the last step:
Code:
gpuPlotGenerator.exe list devices <platformId>
Example:
gpuPlotGenerator.exe list devices 0
Note down the "ID" number for the proper device to use, this will be <deviceId> in the next step
Note down the "Max global memory size" number, this will be the MAXIMUM <stagger> we are able to set
5) Finally, create the desired plotting information. Here is the basic syntax for the app:
Quote
gpuPlotGenerator.exe generate <platformId> <deviceId> "<Plot folder path>" <AccountNumber> <StartingPlot> <NumberOfPlots> <Stagger> <Threads> <Hashes>
<platformId> = The ID# we found in Step 3 (In my case, this was 0)
<deviceId> = The ID# we found in Step 4 (In my case, this was also 0)
<Plot folder path> = The folder you wish to have plots created (Ex: C:\Path to\plots)
<AccountNumber> = This is your Numeric Burstcoin wallet address (Ex: 11111222223333344444)
<StartingPlot> = The plot number you would like to start generating at
<NumberOfPlots> = The number of plots to create from the StartingPlot
<Stagger> = Amount of memory to use on the GPU, in MB. (Ex: I set mine to 1024, instead of my MAX of 1265)
<Threads> = Amount of parallel GPU threads to use (Typically either 64, 128 or 256 depending on the capabilities of your card) (believe this may be tied to "Max work group size", but have no way to confirm)
<Hashes> = Number of chunks the GPU will split work into. (Ranges from 1 to 8160, this is purely guess work... so start low-ish and try to go up as close to 8160 as you can as higher numbers stress the GPU more)
As an example, this is the command that I used on my AMD Radeon 7800:
Code:
gpuPlotGenerator.exe generate 0 0 "C:\Path to\plots" 11111222223333344444 14670000 7335000 1000 64 1024
Note: The above command is probably not optimized for the best speed... but it's just an example that works for my card