Try setting --platform to 1 ex:
--platform 1
Hi
Today I want to start mining MNX with my nvidia rig 6 GPU GTX 1060 6GB
In the cfg file I read that for multiple GPU we need to set the following:
--device 0,1,2,3,4,5
But when I run the miner it only shows device 0
Can somebody help me with this ?
these are my settings
@echo off
setlocal enableDelayedExpansion
Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################
Rem Insert your configuration file name here
set "CNAME=example_config.cfg"
Rem #################################
Rem ## End of user-editable part ##
Rem #################################
set "PARAMS=--use-config %CNAME%"
:MINE
Start /wait /high lolMiner-mnx.exe !PARAMS!
goto :MINE
##########################################################
# This is an example configuration file for lolMiner-mnx #
# #
# Every line starting with "--" will be interpreted as #
# the normal parameters passed to lolMiner-mnx. #
# Every other parameter will be handled as a comment. #
# #
# Have fun mining! #
##########################################################
### User based configuration
--server eu.minexpool.nl # Insert the pool address here
--port 9999 # Insert your pool port here
--user XS5urveU6ZVJZTD6yy8gNE9qnGLjMh5JSs.worker0 # Insert your user and worker names here
--pass x # Insert your worker password here
### Device configuration
--platform 0 # Insert the index of the platform you want to run on. Run lolMiner-mnx.exe --list-devices
# to see all available platforms and the available devices for each platform
--device 0,1,2,3,4,5
# Insert your devices to run the miner here. For multiple GPU pass a comma separated list, e.g.: 0,1 for using two GPUs
--set-work-batch 2 # Uncommend this line to set the work batch size. Default is 2 which is ideal for Nvidia customer GPUs.
# For AMD GPUs try higher values, e.g. 8 or 12 to optimize performance. Higher values increase GPU memory use of lolMiner-mnx.
### Display log configuration
#--set-short-stats-interval 5 # Uncommend to set the time interval (seconds) between the short term performance output. Set 0 to disable the output.
#--set-long-stats-interval 60 # Uncommend to set the time interval (seconds) between the long term performance output. Set 0 to disable the output.
# The value will also determine the length of the benchmark mode
#--enable-time-print # Uncommend to allow lolMiner-mnx to print the system time in HH:MM:SS format before each performance output.
### Expert parameters - handle with care
#--use-alt-mine-thread # Enables the mine thread handling of lolMiner-mnx 0.13. This will disable multi-GPU support.
# Therefore only the first number in --device is handled. The Nvidia load hotfix is enabled by default.
# Currently Intel devices are only working with this switch enabled.
#--set-sleep-duration 1000 # Sets the time span between polling the GPUs for completed work in microseconds. Lower values may stabilize
# the performance, but also increase CPU load for all vendors. Setting the value to 0 will make lolMiner-mnx use one full
# CPU core by 100% for handling all devices. If this is used with "--use-alt-mine-thread" it will disable the Nvidia hotfix.
# Higher values reduce CPU load but may reduce hash speed. Default is 1000 microseconds = 1 millisecond.