Post
Topic
Board Development & Technical Discussion
Re: Solving ECDLP with Kangaroos: Part 1 + 2 + RCKangaroo
by
b0dre
on 13/12/2024, 01:40:57 UTC
Ok, it's better to support 30xx cards even if RCKangaroo is not optimized for them, so I released v1.1.
3090 shows about 3GKeys/sec only, it can be really faster.

Thank you so much, any advice for Linux users?

Linux exe is included as well, or you can compile it by yourself.

I am getting MAIN: Speed: 1140 MKeys/s, Err: 0, DPs: 78335K/161848111608K, without change anything in the RCKangaroo with 3060 like 3 seconds to find 66

I just change this line:
Code:
if (deviceProp.l2CacheSize < 16 * 1024 * 1024) {
    printf("GPU %d - L2 cache size is too small for this application, skip\n", i);
    continue;
}

for this just to test myself is working fine at the moment
Code:
if (deviceProp.l2CacheSize < 2 * 1024 * 1024) {  // Change 2MB instead of 16MB
    printf("GPU %d - L2 cache size is too small for this application, skip\n", i);
    continue;
}