I installed my own bitcoin mining pool using unomp (ubuntu VM) and I now try to run cgminer to test GPU mining on it.
I am new in mining, and do not manage to make cgminer run...
Here is my actual .bat
CLS
@ECHO ON
ECHO.
setx GPU_MAX_ALLOC_PERCENT=100
setx GPU_USE_SYNC_OBJECTS=1
timeout /t 4
cgminer.exe --scrypt
and my cgminer.conf file :
"pools" : [
{
"url" : "stratum+tcp://192.168.1.13:3032",
"user" : "toto",
"pass" : "foobar"
}
]
,
"scrypt" : true,
"intensity" : "20",
"vectors" : "1",
"worksize" : "256",
"kernel" : "scrypt",
"lookup-gap" : "0",
"thread-concurrency" : "24550",
"shaders" : "0",
"gpu-engine" : "0",
"gpu-fan" : "100",
"gpu-memclock" : "0",
"gpu-memdiff" : "0",
"gpu-powertune" : "0",
"gpu-vddc" : "0.000",
"temp-cutoff" : "95",
"temp-overheat" : "90",
"temp-target" : "85",
"api-mcast-port" : "4028",
"api-port" : "4028",
"expiry" : "120",
"failover-only" : true,
"gpu-dyninterval" : "7",
"gpu-platform" : "0",
"gpu-threads" : "1",
"hotplug" : "5",
"log" : "10",
"no-pool-disable" : true,
"per-device-stats" : true,
"queue" : "1",
"scan-time" : "60",
"temp-hysteresis" : "3",
"shares" : "0",
"kernel-path" : "/usr/local/bin"
}
But I got errors :
[2018-02-20 13:16:14] Init GPU thread 0 GPU 0 virtual GPU 0
[2018-02-20 13:16:14] CL Platform vendor: NVIDIA Corporation
[2018-02-20 13:16:14] CL Platform name: NVIDIA CUDA
[2018-02-20 13:16:14] CL Platform version: OpenCL 1.2 CUDA 9.1.92
[2018-02-20 13:16:14] List of devices:
[2018-02-20 13:16:14] 0 GeForce GTX 1050 Ti
[2018-02-20 13:16:14] Selected 0: GeForce GTX 1050 Ti
[2018-02-20 13:16:14] Selecting scrypt kernel
[2018-02-20 13:16:14] Initialising kernel scrypt130511.cl without bitalign, 1 vectors and worksize 256
[2018-02-20 13:16:14] Maximum buffer memory device 0 supports says 1073741824
[2018-02-20 13:16:14] Your scrypt settings come to 1608908800
[2018-02-20 13:16:14] initCl() finished. Found GeForce GTX 1050 Ti
[2018-02-20 13:16:14] 1 gpu miner threads started
[2018-02-20 13:16:14] Work update message received
[2018-02-20 13:16:14] Network diff set to 3.01T
[2018-02-20 13:16:14] New block: 0000000000000000005cabc1047747a12e81bcd18bdb7e8e41e6a4a1ed450244... diff 3.01T
[2018-02-20 13:16:16] Error: clEnqueueReadBuffer failed error -5. (clEnqueueReadBuffer)
[2018-02-20 13:16:16] GPU 0 failure, disabling!
[2018-02-20 13:16:24] ALL (10s):0.000 (avg):0.000h/s | A:0 R:0 HW:0 WU:0.0/m
[2018-02-20 13:16:32] Work update message received
[2018-02-20 13:16:34] ALL (10s):0.000 (avg):0.000h/s | A:0 R:0 HW:0 WU:0.0/m
I use CGMiner 3.7.2 and I have a NVIDIA 1050 TI
What did I miss?
Thank you for your help,
Alex