Next scheduled rescrape ... never
Version 2
Last scraped
Scraped on 22/05/2025, 14:41:48 UTC

Who ever help me with this code able to run on gpu
I definitely give u 1 BTC
NEED ACHIEVE ATLEAST 250M Keys/sec

#include <stdio.h>
#include <cuda.h>
#include "secp256k1.h"
#include "sha256.h"
#include "ripemd160.h"

__global__ void hash(stuff) {

    secp(stuff);
    sha256(stuff);
    ripemd160(stuff);
}

int main() {
     allocate host memory array
     allocate cuda memory
     open file and put in host array

     cuda memcpy host to device

    hash<<<1,1>>>(stuff);

    cuda memcpy device to host

   printf("%sX\n", stuff);
}

now just add incremental threading and actual code.
Version 1
Scraped on 22/05/2025, 14:17:02 UTC

Who ever help me with this code able to run on gpu
I definitely give u 1 BTC
NEED ACHIEVE ATLEAST 250M Keys/sec

#include <stdio.h>
#include <cuda.h>
#include "secp256k1.h"
#include "sha256.h"
#include "ripemd160.h"

__global__ void hash(stuff) {

    secp(stuff)
    sha256(stuff)
    ripemd160(stuff)
}

int main() {
     allocate host memory array
     allocate cuda memory
     open file and put in host array

     cuda memcpy host to device

    hash<<<1,1>>>(stuff);

    cuda memcpy device to host

   printf("%s\n", stuff);
}
Original archived Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
Scraped on 22/05/2025, 14:11:54 UTC

Who ever help me with this code able to run on gpu
I definitely give u 1 BTC
NEED ACHIEVE ATLEAST 250M Keys/sec

#include <stdio.h>
#include <cuda.h>
#include "secp256k1.h"
#include "sha256.h"
#include "ripemd160.h"

__global__ hash() {


}