blake.cl is in the kernel folder
either move it to the main folder or put the kernel path to that directory and see if that helps
Thanks for that. I'll check it out tomorrow.
Yes, it was a pathing problem. Fixed now. I was not using the C drive at the time, so my pathnames were long and messy.
To fix it, I eventually went back to basics and let the GPU miner package unzip/extract to its default location on C.
The error still appeared, but it was fairly easy to build up an appropriate path.
In case it might help anyone - I used a "mule" batch file, foo.bat, on the desktop, which eventually worked in this basic form:
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
setx DISPLAY 0
cd C:/darkcoin-sgminer-windows/darkcoin-windows/
sgminer.exe --kernel darkcoin -o stratum+tcp://pool.darkcoin.io:3333 -u blah.blee -p blather
For testing I just keyed "foo" in a command window, after a CD to the desktop where the foo.bat file was (CD users/username/desktop).
That prevented those annoying disappearing test results that can happen if you just run a batch file standalone.
Once the basic version worked, I added some detail to speed it up. For now, I'm using:
-I 14 --thread-concurrency 30592 --auto-fan
(grabbed from my litecoin batch file) and that gets 780 Kh/s at the main darkcoin pool with an R9 290X. I'll try to optimize it Real Soon Now and move the whole thing to another drive again.
Edit: I've been tuning the settings with good results so far. I'm now using
-I 19 --lookup-gap 2 --shaders 2816 -g 1 -w 512 --thread-concurrency 32765 --auto-fan --temp-hysteresis 5
to get 2.6 Mh/s at the main darkcoin pool with an R9 290X. Still tweaking though.