help me in the csvn tournament

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

flok

Re: help me in the csvn tournament

Post by flok »

op12no2 wrote:What's a "playout"?
50 moves executed from current position upto the end
then, after those 50 moves things are evaluated
of course i do quiescence
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: help me in the csvn tournament

Post by Modern Times »

I am running the exe now - is it playing a game ? I'm seeing almost no CPU usage
flok

Re: help me in the csvn tournament

Post by flok »

Hi,
Modern Times wrote:I am running the exe now - is it playing a game ? I'm seeing almost no CPU usage
It should play at least a couple of times per hour; it is in a mini-tournament.
If not at all then something is wrong.
I checked it and is still running.
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: help me in the csvn tournament

Post by Modern Times »

Yes it is running and displaying output, but it uses just one core.
flok

Re: help me in the csvn tournament

Post by flok »

Modern Times wrote:Yes it is running and displaying output, but it uses just one core.
Hmmm that is odd.

I do:

Code: Select all

        // thread count, threads per group, etc
        nCores = std::thread::hardware_concurrency();

        if (nCores == 0)
                nCores = (int)sysconf(_SC_NPROCESSORS_ONLN);
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: help me in the csvn tournament

Post by Modern Times »

Part of the output is:

Info string: 8:1 workers
sending work to zero workers
0 workers replied in time
flok

Re: help me in the csvn tournament

Post by flok »

Modern Times wrote:Part of the output is:
Info string: 8:1 workers
sending work to zero workers
0 workers replied in time
What that means is:
- it detected 8 cores
- it has no local workers configured

Local workers: you could e.g. setup a proxy queenbee to which multiple workers connect. Then you have only 1 qb talking to my server.
Less traffic (altough 1KB per move is not that much), more latency.
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: help me in the csvn tournament

Post by Modern Times »

I'm not sure what you mean by that and what I need to do.... Is the screenshot normal ?

http://computerchess.org.uk/ray/queenbee.png
flok

Re: help me in the csvn tournament

Post by flok »

Modern Times wrote:I'm not sure what you mean by that and what I need to do.... Is the screenshot normal ?

http://computerchess.org.uk/ray/queenbee.png

Looks perfectly ok!
Modern Times
Posts: 3546
Joined: Thu Jun 07, 2012 11:02 pm

Re: help me in the csvn tournament

Post by Modern Times »

OK, but the CPU doesn't get above about 16% across 8 cores, meaning the overall load is about 1 core only. Same situation on the other 6-cpu box.