Author

Topic: [ANN] AIDEN | 1st to use sCrypt-OG (GPU Optimized) [v0.10.2.2 Released 7/10/15] - page 138. (Read 235405 times)

hero member
Activity: 756
Merit: 500
Can anyone tell me what the config should look like for a 280x on sgminer?
legendary
Activity: 1400
Merit: 1050
I can post settings for any card...lol

Just use a proper miner like yacminer 3.5 and off you go.

Question: what's that bunch of code ghostlander posted? :/
If you have something for the 290x (or just the basic setup with yacminer to work on that scrypt:64)
Is there a benchmark mode ?
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
To the last two posts.... What? Im so confused, did I do something wrong Tongue

READ the Password again ...

Haha lol, darn. Guess I gotta wait then Tongue

haha
member
Activity: 84
Merit: 10
PM for journalist,typing,and data entry services.
To the last two posts.... What? Im so confused, did I do something wrong Tongue

READ the Password again ...

Haha lol, darn. Guess I gotta wait then Tongue
hero member
Activity: 812
Merit: 1000
I can post settings for any card...lol

Just use a proper miner like yacminer 3.5 and off you go.

Question: what's that bunch of code ghostlander posted? :/
member
Activity: 98
Merit: 10
To the last two posts.... What? Im so confused, did I do something wrong Tongue

READ the Password again ...
member
Activity: 84
Merit: 10
PM for journalist,typing,and data entry services.
To the last two posts.... What? Im so confused, did I do something wrong Tongue
legendary
Activity: 1400
Merit: 1050
member
Activity: 84
Merit: 10
PM for journalist,typing,and data entry services.
What is the password for the rar file?

"comebackat4pmest" no caps.

7zip is telling me this is wrong password...
legendary
Activity: 1241
Merit: 1020
No surrender, no retreat, no regret.
Lets do some math real quick

open your calculator and do

2 to the 10th power and tell me what you get.

Stop playing a fool.

Code: ("scrypt-jane.c")
void
scrypt(const uint8_t *password, size_t password_len, const uint8_t *salt, size_t salt_len, uint8_t Nfactor, uint8_t rfactor, uint8_t pfactor, uint8_t *out, size_t bytes) {
scrypt_aligned_alloc YX, V;
uint8_t *X, *Y;
uint32_t N, r, p, chunk_bytes, i;
scrypt_aligned_alloc YX, V;
uint8_t *X, *Y;
uint32_t N, r, p, chunk_bytes, i;

if (Nfactor > scrypt_maxN)
scrypt_fatal_error("scrypt: N out of range");
if (rfactor > scrypt_maxr)
scrypt_fatal_error("scrypt: r out of range");
if (pfactor > scrypt_maxp)
scrypt_fatal_error("scrypt: p out of range");

N = (1 << (Nfactor + 1));
r = (1 << rfactor);
p = (1 << pfactor);

chunk_bytes = SCRYPT_BLOCK_BYTES * r * 2;
V = scrypt_alloc((uint64_t)N * chunk_bytes);
YX = scrypt_alloc((p + 1) * chunk_bytes);

/* 1: X = PBKDF2(password, salt) */
Y = YX.ptr;
X = Y + chunk_bytes;
scrypt_pbkdf2(password, password_len, salt, salt_len, 1, X, chunk_bytes * p);

/* 2: X = ROMix(X) */
for (i = 0; i < p; i++)
scrypt_ROMix((scrypt_mix_word_t *)(X + (chunk_bytes * i)), (scrypt_mix_word_t *)Y, (scrypt_mix_word_t *)V.ptr, N, r);

/* 3: Out = PBKDF2(password, X) */
scrypt_pbkdf2(password, password_len, X, chunk_bytes * p, 1, out, bytes);

scrypt_ensure_zero(YX.ptr, (p + 1) * chunk_bytes);

scrypt_free(&V);
scrypt_free(&YX);
}
full member
Activity: 154
Merit: 100
is it cooler than x11?

cooler as in, needs to wear shades and drive a nice car?

OR cooler as in, the heat produced?

Cooler as in heat produced. It is summer soon. BUt since it is still spring maybe i could still mine without using an AC on. How much heat will it produce?

To be honest, I think if you are pushing your hardware to the max it will produce the same amount of heat.

whats the point then?

Higher hashrate, more security.

If you were to evenly match the cost of hashrates between Aiden, litecoin, and vertcoin
It would take less energy and heat to create 1 mh with aiden then it would the other two.

Not trying to be rude, but how is it more secure when everyone has an equal increase in hash-rate from the same hardware?
member
Activity: 72
Merit: 10
RE virustotal for that build of sgminer, most of those just look like standard flags that come up for any mining app. Example not-a-virus:RiskTool.Win32.BitCoinMiner.ocr. Would be nice if sgminer dev released an official windows binary. But I've used it with no problems.
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
Lets do some math real quick

open your calculator and do

2 to the 10th power and tell me what you get.
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
I'm afraid changing N from 1024 to 128 (N factor from 9 to 6) doesn't qualify as a really ASIC resistant thing.


litecoin is nfactor 10 or 1024
aiden is nfactor 6 or 64

And I answered that question already Tongue

Its currently asic resistant (due to cost to manufactor) but nothing is asic intolerant.

Really? Let's do some math.

Code: ("nfactor.c")
#include 

int main() {
    unsigned int n, nfactor;

    for(nfactor = 0; nfactor < 24; nfactor++) {
        n = (1 << (nfactor + 1));
        printf("n = %u, nfactor = %u\n", n, nfactor);
    }

    return(0);
}

And...

n = 2, nfactor = 0
n = 4, nfactor = 1
n = 8, nfactor = 2
n = 16, nfactor = 3
n = 32, nfactor = 4
n = 64, nfactor = 5
n = 128, nfactor = 6
n = 256, nfactor = 7
n = 512, nfactor = 8
n = 1024, nfactor = 9
n = 2048, nfactor = 10
n = 4096, nfactor = 11
n = 8192, nfactor = 12
n = 16384, nfactor = 13
n = 32768, nfactor = 14
n = 65536, nfactor = 15
n = 131072, nfactor = 16
n = 262144, nfactor = 17
n = 524288, nfactor = 18
n = 1048576, nfactor = 19
n = 2097152, nfactor = 20
n = 4194304, nfactor = 21
n = 8388608, nfactor = 22
n = 16777216, nfactor = 23

Your code requires less memory than regular Scrypt to operate. Only a trivial change in the ASIC firmware allows them to run your code. Do you really think it's a problem even for those programmable hybrid Gridseeds which can do even SHA-256 and Scrypt at the same time? Don't waste your and other people's time.


Of course I think its a problem and why im offering this solution. haha.
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
come chat in irc on freenode #aiden
legendary
Activity: 1241
Merit: 1020
No surrender, no retreat, no regret.
I'm afraid changing N from 1024 to 128 (N factor from 9 to 6) doesn't qualify as a really ASIC resistant thing.


litecoin is nfactor 10 or 1024
aiden is nfactor 6 or 64

And I answered that question already Tongue

Its currently asic resistant (due to cost to manufactor) but nothing is asic intolerant.

Really? Let's do some math.

Code: ("nfactor.c")
#include 

int main() {
    unsigned int n, nfactor;

    for(nfactor = 0; nfactor < 24; nfactor++) {
        n = (1 << (nfactor + 1));
        printf("n = %u, nfactor = %u\n", n, nfactor);
    }

    return(0);
}

And...

n = 2, nfactor = 0
n = 4, nfactor = 1
n = 8, nfactor = 2
n = 16, nfactor = 3
n = 32, nfactor = 4
n = 64, nfactor = 5
n = 128, nfactor = 6
n = 256, nfactor = 7
n = 512, nfactor = 8
n = 1024, nfactor = 9
n = 2048, nfactor = 10
n = 4096, nfactor = 11
n = 8192, nfactor = 12
n = 16384, nfactor = 13
n = 32768, nfactor = 14
n = 65536, nfactor = 15
n = 131072, nfactor = 16
n = 262144, nfactor = 17
n = 524288, nfactor = 18
n = 1048576, nfactor = 19
n = 2097152, nfactor = 20
n = 4194304, nfactor = 21
n = 8388608, nfactor = 22
n = 16777216, nfactor = 23

Your code requires less memory than regular Scrypt to operate. Only a trivial change in the ASIC firmware allows them to run your code. Do you really think it's a problem even for those programmable hybrid Gridseeds which can do even SHA-256 and Scrypt at the same time? Don't waste your and other people's time.
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
What is the password for the rar file?

"comebackat4pmest" no caps.
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
k i would love to partake in a new algo.. but every dl link i see for sgminer is like 14/51 on virustotal.. all false positives..? seems to be a lot. anyone got a clean version?



is the one at sgminerwindows.com giving the false positive?

yea, 14 of em. as long as i hear testimony from people who have used it, i will feel fine. but i wouldn't wanna be the guinea pig for trying to run an app with 14 flags.

I use their compile on my mining rig, so in an isolated environment it seems fine. Alot of other people seem to testify for its safety in #vertsquad on freenode.
hero member
Activity: 676
Merit: 500
What is the password for the rar file?
Jump to: