mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > Software

Reply
 
Thread Tools
Old 2012-04-15, 15:39   #23
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

141048 Posts
Default

I get:
Code:
E:\OurDevelopment\David\Pascal>Quad.exe 1500 0 2
Initializing Primes ... Done.
Quad n=1500 k=27-1999999999977 p<=1190494759
Initializing Sieve ... Done.
Runtime error 216 at $000000010000206B
  $000000010000206B
  $00000001000023E0
  $00000001000091F5

E:\OurDevelopment\David\Pascal>triple.exe 1500 0 2
Initializing Primes ... Done.
Triple n=1500 k=3-1999999995 p<=1190494759
Initializing Sieve ... Done.
Runtime error 216 at $0000000100001F2B
  $0000000100001F2B
  $00000001000022A0
  $00000001000090B5
after compiling with:

"C:\Program Files\FPC\2.6.0\bin\i386-win32\ppcrossx64" -Sg Quad.pas
"C:\Program Files\FPC\2.6.0\bin\i386-win32\ppcrossx64" -Sg triple.pas

any hints?
henryzz is online now   Reply With Quote
Old 2012-04-15, 16:32   #24
axn
 
axn's Avatar
 
Jun 2003

2×7×17×23 Posts
Default

can you compile with -gl option and post the debug output?
axn is offline   Reply With Quote
Old 2012-04-15, 18:52   #25
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

22×1,553 Posts
Default

Quote:
Originally Posted by axn View Post
can you compile with -gl option and post the debug output?
Strangely they start working when I compile with -gl. I had tried running with options like -O- to disable optimisations already.
henryzz is online now   Reply With Quote
Old 2012-04-15, 20:56   #26
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

22·1,553 Posts
Default

Am I correct in thinking that adding +11 to to search for quintuplets isn't that hard? You used 6 all over the triplet code and 30 all over the quads code. Quads needed 30 because 7>6. Quins can keep 30 as 11<30 so all that needs adding is
Code:
      { c = +1 ==> x = -[11*t+k] }
      x := t*2; if(x >= n) then x := x - n; {2t}
      x := x*2; if(x >= n) then x := x - n; {4t}
      x := x+t; if(x >= n) then x := x - n; {5t}
      x := x*2; if(x >= n) then x := x - n; {10t}
      x := x+t; if(x >= n) then x := x - n; {11t}
      x := x+k; if(x >= n) then x := x - n; {11t+k}
      if(x > 0) then x := n-x; { - }
      ndx[i, 5] := x;
plus changing the dimensions of ndx and a few loop counters

Is there any way of me getting it running not under debug logging?

edit: Is the minimum n of 1000 critical? from the code I would guess that n=31 or maybe 61 would actually be the minimum for the quads code. I will experiment comparing with newpgen's output.

Last fiddled with by henryzz on 2012-04-15 at 21:00
henryzz is online now   Reply With Quote
Old 2012-04-15, 22:42   #27
axn
 
axn's Avatar
 
Jun 2003

2×7×17×23 Posts
Default

Quote:
Originally Posted by henryzz View Post
Am I correct in thinking that adding +11 to to search for quintuplets isn't that hard? You used 6 all over the triplet code and 30 all over the quads code. Quads needed 30 because 7>6. Quins can keep 30 as 11<30 so all that needs adding is
Code:
      { c = +1 ==> x = -[11*t+k] }
      x := t*2; if(x >= n) then x := x - n; {2t}
      x := x*2; if(x >= n) then x := x - n; {4t}
      x := x+t; if(x >= n) then x := x - n; {5t}
      x := x*2; if(x >= n) then x := x - n; {10t}
      x := x+t; if(x >= n) then x := x - n; {11t}
      x := x+k; if(x >= n) then x := x - n; {11t+k}
      if(x > 0) then x := n-x; { - }
      ndx[i, 5] := x;
plus changing the dimensions of ndx and a few loop counters
Should be fine.

Quote:
Originally Posted by henryzz View Post
Is there any way of me getting it running not under debug logging?
Can you compile with -al and post the assembly listing (.s) file. It could be that in optimizing mode, I might need to save/restore a few of the registers in the various asm blocks.

Quote:
Originally Posted by henryzz View Post
edit: Is the minimum n of 1000 critical? from the code I would guess that n=31 or maybe 61 would actually be the minimum for the quads code. I will experiment comparing with newpgen's output.
You're right. That check was added to make sure that you are using sensible n values. I think n = 30 would be the lowest. As long as k*2^n > max sieve prime it should be fine.
axn is offline   Reply With Quote
Old 2012-04-16, 12:25   #28
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

11000010001002 Posts
Default

Downloading the windows sdk to get ml64.exe which is needed for -al
henryzz is online now   Reply With Quote
Old 2012-04-16, 16:23   #29
Puzzle-Peter
 
Puzzle-Peter's Avatar
 
Jun 2009

22×52×7 Posts
Default

So who can / will extend this to 6-, 7-, 8-tuplets or even farther? I know I can't
Puzzle-Peter is offline   Reply With Quote
Old 2012-04-16, 16:50   #30
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

184416 Posts
Default

I think I should be able to extend it to 6 7 or 8 -tuplets

I have attached the .s file produced by ppcrossx64 -al
masm then fails to assemble it with mulitple errors of the following types:
Quad.s(1060) : error A2101:cannot add two relocatable labels
Quad.s(1072) : error A2022:instruction operands must be the same size

Looks to me like the assembler included in ppcrossx64 lets the code get away with something that it shouldn't and masm picks up on it.

Anyone know the best pfgw ABC header for quads or larger?
Attached Files
File Type: zip Quad.zip (6.7 KB, 205 views)
henryzz is online now   Reply With Quote
Old 2012-04-16, 21:04   #31
axn
 
axn's Avatar
 
Jun 2003

2·7·17·23 Posts
Default

Quote:
Originally Posted by henryzz View Post
I have attached the .s file produced by ppcrossx64 -al
masm then fails to assemble it with mulitple errors of the following types:
Quad.s(1060) : error A2101:cannot add two relocatable labels
Quad.s(1072) : error A2022:instruction operands must be the same size

Looks to me like the assembler included in ppcrossx64 lets the code get away with something that it shouldn't and masm picks up on it.
Those errors should be harmless. If the object code is produced, it should work. Looking thru the asm listing, I can't see anything obviously wrong with the code sections that I was worried about.

EDIT:- Did you, by any chance, use the -gl setting along with the -al setting?

Last fiddled with by axn on 2012-04-16 at 21:05
axn is offline   Reply With Quote
Old 2012-04-16, 21:21   #32
henryzz
Just call me Henry
 
henryzz's Avatar
 
"David"
Sep 2007
Liverpool (GMT/BST)

22×1,553 Posts
Default

Quote:
Originally Posted by axn View Post
Those errors should be harmless. If the object code is produced, it should work. Looking thru the asm listing, I can't see anything obviously wrong with the code sections that I was worried about.

EDIT:- Did you, by any chance, use the -gl setting along with the -al setting?
I don't think I did with the .s file I provided. I get the same errors with the -gl setting added to the -al setting.

I have produced versions for quintuples and sextuples. They have hardly been tested and I am only pretty certain I added -5 right as it is negative. The source is attached.
Attached Files
File Type: zip 5and6.zip (5.2 KB, 216 views)
henryzz is online now   Reply With Quote
Old 2012-04-16, 22:30   #33
axn
 
axn's Avatar
 
Jun 2003

2×7×17×23 Posts
Default

Quote:
Originally Posted by henryzz View Post
I don't think I did with the .s file I provided. I get the same errors with the -gl setting added to the -al setting.
I am out of ideas Perhaps you can save/restore registers in each asm block. Try adding "push <reg>" statements at the beginning of each asm block and do a "pop <reg>" at the end. Save/restore all registers except eax & edx.

I am thinking of rewriting the whole thing in C without asm.

Quote:
Originally Posted by henryzz View Post
I have produced versions for quintuples and sextuples. They have hardly been tested and I am only pretty certain I added -5 right as it is negative. The source is attached.
They look correct. Note that for sextuples, you can include 7 (30 becomes 210) also into the mix and thus be 7 times faster.
axn is offline   Reply With Quote
Reply

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
How/Where to get Jens Kruse Andersen's prime constellation sieve? Stargate38 And now for something completely different 2 2017-04-28 00:08
Efficiently finding a linear progression in data fivemack Math 27 2015-12-12 18:42
GPU Prime Sieve tapion64 GPU Computing 7 2014-04-10 06:15
Sieve depth vs. prime probability Unregistered Information & Answers 2 2010-05-25 20:51
Prime in Riesel Sieve Project Sloth Prime Sierpinski Project 1 2006-05-10 02:02

All times are UTC. The time now is 16:02.


Fri Sep 22 16:02:04 UTC 2023 up 9 days, 13:44, 1 user, load averages: 0.85, 0.86, 0.90

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.

≠ ± ∓ ÷ × · − √ ‰ ⊗ ⊕ ⊖ ⊘ ⊙ ≤ ≥ ≦ ≧ ≨ ≩ ≺ ≻ ≼ ≽ ⊏ ⊐ ⊑ ⊒ ² ³ °
∠ ∟ ° ≅ ~ ‖ ⟂ ⫛
≡ ≜ ≈ ∝ ∞ ≪ ≫ ⌊⌋ ⌈⌉ ∘ ∏ ∐ ∑ ∧ ∨ ∩ ∪ ⨀ ⊕ ⊗ 𝖕 𝖖 𝖗 ⊲ ⊳
∅ ∖ ∁ ↦ ↣ ∩ ∪ ⊆ ⊂ ⊄ ⊊ ⊇ ⊃ ⊅ ⊋ ⊖ ∈ ∉ ∋ ∌ ℕ ℤ ℚ ℝ ℂ ℵ ℶ ℷ ℸ 𝓟
¬ ∨ ∧ ⊕ → ← ⇒ ⇐ ⇔ ∀ ∃ ∄ ∴ ∵ ⊤ ⊥ ⊢ ⊨ ⫤ ⊣ … ⋯ ⋮ ⋰ ⋱
∫ ∬ ∭ ∮ ∯ ∰ ∇ ∆ δ ∂ ℱ ℒ ℓ
𝛢𝛼 𝛣𝛽 𝛤𝛾 𝛥𝛿 𝛦𝜀𝜖 𝛧𝜁 𝛨𝜂 𝛩𝜃𝜗 𝛪𝜄 𝛫𝜅 𝛬𝜆 𝛭𝜇 𝛮𝜈 𝛯𝜉 𝛰𝜊 𝛱𝜋 𝛲𝜌 𝛴𝜎𝜍 𝛵𝜏 𝛶𝜐 𝛷𝜙𝜑 𝛸𝜒 𝛹𝜓 𝛺𝜔