Bitcoin Forum
April 25, 2024, 01:36:49 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
Author Topic: [XPM]unofficial jhPrimeminer thread  (Read 180163 times)
dudeguy
Member
**
Offline Offline

Activity: 182
Merit: 10



View Profile
August 07, 2013, 11:34:31 PM
 #241

I have i7 3770k, so should i download the AVX version?

Haswell, Sandy Bridge, and Ivy Bridge should all support it along with x86 AMD processors from the FX line and Bulldozer and Piledriver.  I could be wrong so don't quote me on that. I'm literally too lazy to google it. So the same as you Tongue
1714009009
Hero Member
*
Offline Offline

Posts: 1714009009

View Profile Personal Message (Offline)

Ignore
1714009009
Reply with quote  #2

1714009009
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714009009
Hero Member
*
Offline Offline

Posts: 1714009009

View Profile Personal Message (Offline)

Ignore
1714009009
Reply with quote  #2

1714009009
Report to moderator
mumus
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250



View Profile
August 08, 2013, 08:06:19 AM
 #242

Hi Mumus

Firstly I am a noob in programming c and, since I wanted to learn, I though "what the hell, might as well try this"

So I am trying to understand you code and algorithm and came on a possible error. I think I am using V5

At the end of the bool CSieveOfEratosthenes::Weave()

you have

{
                const unsigned long lCompositeCunningham1 = pCompositeCunningham1A | pCompositeCunningham1B;
                const unsigned long lCompositeCunningham2 = pCompositeCunningham2A | pCompositeCunningham2B;
                const unsigned long lCompositeBiTwin = pCompositeCunningham1A | pCompositeCunningham2A;
                pCandidateBiTwin = ~lCompositeBiTwin;
                pCandidateCunningham1 = ~lCompositeCunningham1;
                pCandidates = ~(lCompositeCunningham1 & lCompositeCunningham2 & lCompositeBiTwin);
            }
The way that I see it is you do not have a "pCandidateCunningham2 = ~lCompositeCunningham2;" This means in my opinion that you are not checking for the second series.

 Is this correct?



This code was taken from the primecoin client optimized by mikaelh published on https://bitcointalk.org/index.php?topic=255782.0, where he did a very nice job optimizing the code.
I didn't took the time yet to fully understand what exactly he did there. I guess it's better to ask him directly.  In any case I will also check if what you wrote is correct.
Thanks,
M
refer_2_me
Full Member
***
Offline Offline

Activity: 213
Merit: 100



View Profile
August 08, 2013, 12:07:18 PM
Last edit: August 08, 2013, 12:24:27 PM by refer_2_me
 #243

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

BTC: 1reFerkRnftob5YvbB112bbuwepC9XYLj
XPM: APQpPZCfEz3kejrYTfyACY1J9HrjnRf34Y
mumus
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250



View Profile
August 08, 2013, 12:40:58 PM
 #244

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

I have no idea but I will try to find out what can cause this.
refer_2_me
Full Member
***
Offline Offline

Activity: 213
Merit: 100



View Profile
August 08, 2013, 12:43:57 PM
 #245

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

I have no idea but I will try to find out what can cause this.

This is happening in v6 running through wine on my linux box (Ubuntu 13.04). This is the same machine that were the load is dropping.
I am working around that problem by killing and restarting the miner every half hour, BTW).

BTC: 1reFerkRnftob5YvbB112bbuwepC9XYLj
XPM: APQpPZCfEz3kejrYTfyACY1J9HrjnRf34Y
mumus
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250



View Profile
August 08, 2013, 01:08:24 PM
 #246

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

I have no idea but I will try to find out what can cause this.

This is happening in v6 running through wine on my linux box (Ubuntu 13.04). This is the same machine that were the load is dropping.
I am working around that problem by killing and restarting the miner every half hour, BTW).

I've tried to test also on a 12 core Linux (Ubuntu 12.10) machine using wine and I didn't got so far. It's crashing all the time so I'm also restarting using a script. The problem that I have only 1Gb RAM + 1Gb swap, and it seems that it is killed because of low memory. Under windows I can't see that has any memory leak and usually it uses about 30Mb (depending on the parameters). More investigation is needed. the problem that I'm less familiar to work under Linux especially when it comes to coding.
refer_2_me
Full Member
***
Offline Offline

Activity: 213
Merit: 100



View Profile
August 08, 2013, 01:13:42 PM
 #247

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

I have no idea but I will try to find out what can cause this.

This is happening in v6 running through wine on my linux box (Ubuntu 13.04). This is the same machine that were the load is dropping.
I am working around that problem by killing and restarting the miner every half hour, BTW).

I've tried to test also on a 12 core Linux (Ubuntu 12.10) machine using wine and I didn't got so far. It's crashing all the time so I'm also restarting using a script. The problem that I have only 1Gb RAM + 1Gb swap, and it seems that it is killed because of low memory. Under windows I can't see that has any memory leak and usually it uses about 30Mb (depending on the parameters). More investigation is needed. the problem that I'm less familiar to work under Linux especially when it comes to coding.

I can fairly safely rule out memory issues. I have 48 GB in that machine with around 32 GB free. Is it possible that it is related to storage in the L1 cache? I am also using the computer for other work stuff (it's my work desktop). I no almost nothing about L1, so this probably sounds dumb.

BTC: 1reFerkRnftob5YvbB112bbuwepC9XYLj
XPM: APQpPZCfEz3kejrYTfyACY1J9HrjnRf34Y
dudeguy
Member
**
Offline Offline

Activity: 182
Merit: 10



View Profile
August 08, 2013, 04:11:38 PM
 #248

Actually, I'm having the same problem with v6 as I previously had with v5, where it runs fine for a while, but then drops down to about 40% load. Also, my Val/h is much lower then before, previously it was around 17-18 with v4 and with v6 after an hour or so it's hovering around 5. Any idea what is going on mumus?

Make sure you aren't throttling down because of heat issues.
dudeguy
Member
**
Offline Offline

Activity: 182
Merit: 10



View Profile
August 08, 2013, 04:17:24 PM
 #249

The miner seems to be running, but it keeps throwing an error:

err:ntdll:RtlpWaitForCriticalSection section 0x140061040 "?" wait timed out in thread 002f, blocked by 0032, retrying (60 sec)

Any idea why?

Edit: It doesn't appear to matter too much seeing as I just found a block for the pool.

I have no idea but I will try to find out what can cause this.

This is happening in v6 running through wine on my linux box (Ubuntu 13.04). This is the same machine that were the load is dropping.
I am working around that problem by killing and restarting the miner every half hour, BTW).

I've tried to test also on a 12 core Linux (Ubuntu 12.10) machine using wine and I didn't got so far. It's crashing all the time so I'm also restarting using a script. The problem that I have only 1Gb RAM + 1Gb swap, and it seems that it is killed because of low memory. Under windows I can't see that has any memory leak and usually it uses about 30Mb (depending on the parameters). More investigation is needed. the problem that I'm less familiar to work under Linux especially when it comes to coding.

Check out this instruction list.: https://bitcointalk.org/index.php?topic=255782.msg2853799;topicseen#msg2853799

You might helped by making a swap file in case you run out of memory.
refer_2_me
Full Member
***
Offline Offline

Activity: 213
Merit: 100



View Profile
August 08, 2013, 05:06:51 PM
 #250

Actually, I'm having the same problem with v6 as I previously had with v5, where it runs fine for a while, but then drops down to about 40% load. Also, my Val/h is much lower then before, previously it was around 17-18 with v4 and with v6 after an hour or so it's hovering around 5. Any idea what is going on mumus?

Make sure you aren't throttling down because of heat issues.

I don't think that is a problem either, the 8 cores are all within 57 to 66 C. I don't think that should be a problem.

BTC: 1reFerkRnftob5YvbB112bbuwepC9XYLj
XPM: APQpPZCfEz3kejrYTfyACY1J9HrjnRf34Y
dudeguy
Member
**
Offline Offline

Activity: 182
Merit: 10



View Profile
August 08, 2013, 05:35:28 PM
 #251

Actually, I'm having the same problem with v6 as I previously had with v5, where it runs fine for a while, but then drops down to about 40% load. Also, my Val/h is much lower then before, previously it was around 17-18 with v4 and with v6 after an hour or so it's hovering around 5. Any idea what is going on mumus?

Make sure you aren't throttling down because of heat issues.

I don't think that is a problem either, the 8 cores are all within 57 to 66 C. I don't think that should be a problem.

AVX? Make sure you have C++ up to date.
Sterling
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
August 08, 2013, 06:24:38 PM
 #252

Uhhhh, what's going on?

https://i.imgur.com/ugQsJmR.png
mumus
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250



View Profile
August 08, 2013, 06:59:39 PM
 #253

Uhhhh, what's going on?



Can you tell me how may thread (-t) was used with the miner when this happened?
Sterling
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
August 08, 2013, 07:35:29 PM
 #254

Can you tell me how may thread (-t) was used with the miner when this happened?

-t 6

(1055t)
snakee
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
August 08, 2013, 08:18:27 PM
 #255

Uhhhh, what's going on?

https://i.imgur.com/ugQsJmR.png

Can you tell me how may thread (-t) was used with the miner when this happened?

i had exactly the same problem yesterday, lost a few xpm cause it was before i stood up

im using a 3450 -t4 , maybe that helps...

im back to v4 because i need that coins atm :/
Lytse
Newbie
*
Offline Offline

Activity: 56
Merit: 0


View Profile
August 08, 2013, 08:43:51 PM
 #256

Code:
:~/jhPrimeminer-GMP-v6$ wine jhPrimeminer.exe --help
fixme:heap:HeapSetInformation 0x240000 0 0x23fc60 4
Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
err:systray:initialize_systray Could not create tray window
Usage: jhPrimeminer.exe [options]
Options:

Are these wine errors or do you try to create a window for a commandline tool?
Sterling
Newbie
*
Offline Offline

Activity: 39
Merit: 0


View Profile
August 08, 2013, 08:48:01 PM
 #257

Just had the prime number 2 problem again.

Oh mumus!!

I just remembered, cranked down d to 8 last night and I hadn't run into the problem before that (using 10 previously).
pocesar
Member
**
Offline Offline

Activity: 105
Merit: 10


View Profile WWW
August 08, 2013, 09:31:22 PM
 #258

Hmm, on ypool block statistics ( http://ypool.net/stats.php?a=bd&nr=3981 ) the user

Quote
mumusv6miner   15517   4521.7   0.69676

how he got 15k shares in one block that took less than 2 minutes to be found? he's have the biggest share count in ypools...

https://github.com/pocesar - BTC 1KLRAFHGGhE2WiRASkASatvMR1vALmkB9L
mumus
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250



View Profile
August 09, 2013, 04:00:02 AM
 #259

Uhhhh, what's going on?


Can you tell me how may thread (-t) was used with the miner when this happened?

i had exactly the same problem yesterday, lost a few xpm cause it was before i stood up

im using a 3450 -t4 , maybe that helps...

im back to v4 because i need that coins atm :/

Looks like it happens when the jhPrimeminer client disconnects from the pool and doesn't comes bask to mining on reconnect. I will try to fix it asap.
youlonghun
Newbie
*
Offline Offline

Activity: 19
Merit: 0


View Profile
August 09, 2013, 12:41:35 PM
 #260

Hmm, on ypool block statistics ( http://ypool.net/stats.php?a=bd&nr=3981 ) the user

Quote
mumusv6miner   15517   4521.7   0.69676

how he got 15k shares in one block that took less than 2 minutes to be found? he's have the biggest share count in ypools...
something special of his seting??
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 [13] 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!