Bitcoin Forum
May 10, 2024, 08:59:59 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 [541] 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 ... 1135 »
  Print  
Author Topic: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX]  (Read 3426872 times)
Dotcommie
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
April 11, 2014, 04:44:45 AM
 #10801

So which should I be voting for on beecoin? X11, blake256, Keccak, or Scrypt-Jane N-Modified?
https://bitcointalk.org/index.php?topic=559876.0


I was leaning toward keccak but it sounds like x11 is going to be great on all the 750s i have.
1715331599
Hero Member
*
Offline Offline

Posts: 1715331599

View Profile Personal Message (Offline)

Ignore
1715331599
Reply with quote  #2

1715331599
Report to moderator
Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715331599
Hero Member
*
Offline Offline

Posts: 1715331599

View Profile Personal Message (Offline)

Ignore
1715331599
Reply with quote  #2

1715331599
Report to moderator
1715331599
Hero Member
*
Offline Offline

Posts: 1715331599

View Profile Personal Message (Offline)

Ignore
1715331599
Reply with quote  #2

1715331599
Report to moderator
sin242
Sr. Member
****
Offline Offline

Activity: 280
Merit: 250


View Profile
April 11, 2014, 04:46:43 AM
 #10802

So which should I be voting for on beecoin? X11, blake256, Keccak, or Scrypt-Jane N-Modified?
https://bitcointalk.org/index.php?topic=559876.0


I was leaning toward keccak but it sounds like x11 is going to be great on all the 750s i have.



I think we're going to be much more competitive on x11 vs keccak from what im understanding.

Dark:  Xk9BoVerBd41JCjWQEhnxoowP7YNUK439z
BTC:  1JzPN2h8WGSi7kQeY5wuP4PjVD2hxkHJQM
jk_14
Legendary
*
Offline Offline

Activity: 1292
Merit: 1000


View Profile
April 11, 2014, 07:32:24 AM
 #10803

Hi,

Maybe this information can be nice for Cudaminer users here:

CUDAminer & KopiemTu v1.2 with pool manager - are available
works "out of the box" - just plug it in, add your pool information, and start mining, with little fuss overall

https://bitcointalk.org/index.php?topic=520998.0

Feedback is welcome! Smiley
ivanlabrie
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1000



View Profile
April 11, 2014, 10:24:16 AM
 #10804

Downloading it again...(stupid isp)

Looking forward to trying it.
jk_14
Legendary
*
Offline Offline

Activity: 1292
Merit: 1000


View Profile
April 11, 2014, 10:45:19 AM
 #10805

Downloading it again...(stupid isp)

Looking forward to trying it.


maybe try multi-archive then (3x 550MB) ?

https://mega.co.nz/#!f0J3gJIa!Mqj_qk2--rY11DyvqBC4nW-_U1MmlLFHzjqiCkUNNGU
https://mega.co.nz/#!60JGTAQC!YeqKqfg3Oj-7cjRUm0ozHYo-2sD7OmMqpaRXBiKCOe0
https://mega.co.nz/#!GpY1SRAY!hYSBFxcEuYhon6FmwMVt1MOiJVp2J5lZPyHsvKnEi4g
bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 11:03:05 AM
Last edit: April 11, 2014, 11:15:29 AM by bigjme
 #10806

ok christian last question i promise  Roll Eyes
so i got the webserver implemented and working, however the second it does a single hash i am unable to display the hashrate and it crashes ccminer.

so i set the code to display a static number, hashes fine, so i tried to send up the hashrate into the query

so at the top i declared a new static double
Code:
static double display_hashrate;

then set my webcode to display it, and went down into the share_result function and below
Code:
sprintf(s, hashrate >= 1e6 ? "%.0f" : "%.2f", 1e-3 * hashrate);

i declared
Code:
display_hashrate = hashrate;

so their both doubles, except that display_hashrate should be a global variable?
but the second it runs the code to set a value for display_hashrate, if i try and load the webpage it crashes ccminer, like it was unable to set the variable or something went wrong.

am i declaring the display_hashrate variable incorrectly?

thanks  Grin

UPDATE

ok so i changed some declarations and it seems that there is an issue accessing the global variable

so this is the change i made, so i added this peice of code in after the display hashrate line
Code:
sprintf(s, hashrate >= 1e6 ? "%.0f" : "%.2f", 1e-3 * hashrate);
display_hashrate = 16;

in theory that means that every time it tries to submit shares it should set the value of the variable to 16. at the top i then declared
Code:
double display_hashrate;

so the variable is there as a global variable. and the website code is set to
Code:
mg_printf_data(conn, "%s", display_hashrate);

now it is just constantly displaying (null) because for some reason the "display_hashrate = 16;" part is not updating the value.

Owner of: cudamining.co.uk
cbuchner1 (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
April 11, 2014, 11:19:51 AM
 #10807

ok christian last question i promise  Roll Eyes

don't use %s to print a variable of type double. Meh...
gpuminer
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
April 11, 2014, 11:23:30 AM
 #10808

I have a question, hope somebody can help. Which brand should I buy MSI or gigabytes or Asus gtx 750ti ? And why ?

Free SIGNs giving everyday. Be part, do not miss!. Sw4sYCL3h9NjLu1i9d6YSSsuQZQztFR7jW
jk_14
Legendary
*
Offline Offline

Activity: 1292
Merit: 1000


View Profile
April 11, 2014, 11:37:15 AM
 #10809

I have a question, hope somebody can help. Which brand should I buy MSI or gigabytes or Asus gtx 750ti ? And why ?

Now I buy this one only:
http://www.palit.biz/palit/vgapro.php?id=2252

"cheap & good" Smiley

almost 300kH/s scrypt, almost 150kH/s N-scrypt 2048 (under KopiemTu v1.2, of course Smiley )
(and there is a place for overclocking, when Nvidia will release linux driver with OC and 750 Ti support together)
bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 11:39:16 AM
Last edit: April 11, 2014, 11:53:18 AM by bigjme
 #10810

ok christian last question i promise  Roll Eyes

don't use %s to print a variable of type double. Meh...

meh, i didnt even know what the %s did till now ;-)
%f seems to be working, now to let it get the value from hashrate instead.
i trust that i don't need to do the number shifting for the hashrate just to test it? i.e. 1e-3 * hashrate

Owner of: cudamining.co.uk
cbuchner1 (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
April 11, 2014, 12:00:10 PM
 #10811

i trust that i don't need to do the number shifting for the hashrate just to test it? i.e. 1e-3 * hashrate

Don't really know. Do whatever necessary to get reasonable numbers Wink
bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 12:07:52 PM
 #10812

i trust that i don't need to do the number shifting for the hashrate just to test it? i.e. 1e-3 * hashrate

Don't really know. Do whatever necessary to get reasonable numbers Wink

:O you don't know? lmao yeh i did need to add it in to drop the numbers back 3 points (divide it by 1000)
just compiled it and waiting on a yay or boo for the number to update ;-)
i may build in an average aswell, hmmm

max, min, avg, last ;-)
andddd my current web page display
{'requests': [{'type':'GET' },{'query':'(null)'},{'hashrates': [{'last':'2935.416048' }]}

Owner of: cudamining.co.uk
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
April 11, 2014, 12:14:24 PM
 #10813

i trust that i don't need to do the number shifting for the hashrate just to test it? i.e. 1e-3 * hashrate

Don't really know. Do whatever necessary to get reasonable numbers Wink

:O you don't know? lmao yeh i did need to add it in to drop the numbers back 3 points (divide it by 1000)
just compiled it and waiting on a yay or boo for the number to update ;-)
i may build in an average aswell, hmmm

max, min, avg, last ;-)
andddd my current web page display
{'requests': [{'type':'GET' },{'query':'(null)'},{'hashrates': [{'last':'2935.416048' }]}
an overall average would be good yes.

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 12:16:51 PM
 #10814

i trust that i don't need to do the number shifting for the hashrate just to test it? i.e. 1e-3 * hashrate

Don't really know. Do whatever necessary to get reasonable numbers Wink

:O you don't know? lmao yeh i did need to add it in to drop the numbers back 3 points (divide it by 1000)
just compiled it and waiting on a yay or boo for the number to update ;-)
i may build in an average aswell, hmmm

max, min, avg, last ;-)
andddd my current web page display
{'requests': [{'type':'GET' },{'query':'(null)'},{'hashrates': [{'last':'2935.416048' }]}
an overall average would be good yes.

that would be pretty easy now i have it running. i wanted to format it as json but the webserver will only allow me to export it as ' and not " Sad
so i may export them with this format

min:5555;max:5555;avg:5555;last:5555;

that way it should be pretty easy to split up into arrays from a webpage

Owner of: cudamining.co.uk
cbuchner1 (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 502


View Profile
April 11, 2014, 12:20:31 PM
 #10815


If those hashrates were groestl then i will see a 2.5x improvement over right now.
Its rare i actually want to learn a new coding language to understand how something works but this has me interested now. Even if i only manage to get the webserver working i will be happy.


I would love to share details about what we did, but I won't (AMD spys everywhere lol).

bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 12:22:01 PM
 #10816

I would love to share details about what we did, but I won't (AMD spys everywhere lol).

trust noone! the nsa are watching! Wink
i don't blame you

Owner of: cudamining.co.uk
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
April 11, 2014, 12:30:22 PM
 #10817

btl getting pumped

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
bigjme
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250


View Profile
April 11, 2014, 12:31:10 PM
 #10818

btl getting pumped

i have a load of them sitting about lol

Owner of: cudamining.co.uk
DLow
Hero Member
*****
Offline Offline

Activity: 616
Merit: 500



View Profile
April 11, 2014, 12:32:57 PM
 #10819

quick question: which myriad algos can be mined on 750ti cards right now?
djm34
Legendary
*
Offline Offline

Activity: 1400
Merit: 1050


View Profile WWW
April 11, 2014, 12:34:52 PM
 #10820

quick question: which myriad algos can be mined on 750ti cards right now?
scrypt, sha256 (if you are desperate),
groestl, I think it isn't the same groest than in groestlcoin

the last time I looked at that thing, the lowest diff was on scrypt...

djm34 facebook page
BTC: 1NENYmxwZGHsKFmyjTc5WferTn5VTFb7Ze
Pledge for neoscrypt ccminer to that address: 16UoC4DmTz2pvhFvcfTQrzkPTrXkWijzXw
Pages: « 1 ... 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 [541] 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 ... 1135 »
  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!