Bitcoin Forum
March 19, 2024, 09:54:41 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 [766] 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 ... 843 »
  Print  
Author Topic: OFFICIAL CGMINER mining software thread for linux/win/osx/mips/arm/r-pi 4.11.1  (Read 5805147 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (3 posts by 1+ user deleted.)
Luke-Jr
Legendary
*
Offline Offline

Activity: 2576
Merit: 1186



View Profile
July 26, 2014, 10:49:31 PM
 #15301

So I`m guessing better leave it alone Smiley
TY for quick heads-up.

Edit:
They are working on it https://github.com/KnCMiner/cgminer
But I preasume lots of work to commit any changes...
Some FAQ/HOWTO compile it under linux/ubuntu to run on miner?

I know they keep updating their tree, but they have not pushed a single patch to mainline cgminer. Compiling it requires putting aside a writable partition on the embedded bbb device in it and that is far from trivial unfortunately and I'm not sure there is a set of instructions anywhere public to do that (and I've long since lost those instructions myself too).
You can do it in RAM just fine:
https://github.com/luke-jr/bfgminer/blob/bfgminer-4.5.0/README.ASIC#L145
(pretty sure these steps should work for cgminer just as well)

1710842081
Hero Member
*
Offline Offline

Posts: 1710842081

View Profile Personal Message (Offline)

Ignore
1710842081
Reply with quote  #2

1710842081
Report to moderator
1710842081
Hero Member
*
Offline Offline

Posts: 1710842081

View Profile Personal Message (Offline)

Ignore
1710842081
Reply with quote  #2

1710842081
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1710842081
Hero Member
*
Offline Offline

Posts: 1710842081

View Profile Personal Message (Offline)

Ignore
1710842081
Reply with quote  #2

1710842081
Report to moderator
1710842081
Hero Member
*
Offline Offline

Posts: 1710842081

View Profile Personal Message (Offline)

Ignore
1710842081
Reply with quote  #2

1710842081
Report to moderator
1710842081
Hero Member
*
Offline Offline

Posts: 1710842081

View Profile Personal Message (Offline)

Ignore
1710842081
Reply with quote  #2

1710842081
Report to moderator
dlasher
Sr. Member
****
Offline Offline

Activity: 467
Merit: 250



View Profile WWW
July 27, 2014, 06:37:00 AM
 #15302


ok, I went back 15 pages, but didn't see this answered, so I hope I'm safe in asking:

Antminer S3 support yet? I see S1 & S2 folders, but no S3 folder yet.. Hoping Kano has a binary soon..

Trying to compile my own, but getting the build env right is... painful.


Not yet sorry. I believe he is/will be working on it.


Thank you! Can I assume the that device support is already present and mainline'd, and we're just waiting for a usable binary? (IE should I keep trying to compile my own?)


rav3n_pl
Legendary
*
Offline Offline

Activity: 1361
Merit: 1003


Don`t panic! Organize!


View Profile WWW
July 27, 2014, 11:06:22 AM
 #15303

So I`m guessing better leave it alone Smiley
TY for quick heads-up.

Edit:
They are working on it https://github.com/KnCMiner/cgminer
But I preasume lots of work to commit any changes...
Some FAQ/HOWTO compile it under linux/ubuntu to run on miner?

I know they keep updating their tree, but they have not pushed a single patch to mainline cgminer. Compiling it requires putting aside a writable partition on the embedded bbb device in it and that is far from trivial unfortunately and I'm not sure there is a set of instructions anywhere public to do that (and I've long since lost those instructions myself too).
I did a git pull thiers repo ontop of your master tree
Code:
git clone https://github.com/ckolivas/cgminer
Cloning into 'cgminer'...
remote: Counting objects: 25124, done.
remote: Compressing objects: 100% (9251/9251), done.
remote: Total 25124 (delta 15643), reused 25124 (delta 15643)
Receiving objects: 100% (25124/25124), 20.73 MiB | 705.00 KiB/s, done.
Resolving deltas: 100% (15643/15643), done.
Checking connectivity... done.
rav3n@bitrav3n:~$ cd cgminer
rav3n@bitrav3n:~/cgminer$ git pull https://github.com/KnCMiner/cgminer
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 2 (delta 0)
Unpacking objects: 100% (4/4), done.
From https://github.com/KnCMiner/cgminer
 * branch            HEAD       -> FETCH_HEAD
Removing driver-knc-spi-fpga.c
Auto-merging Makefile.am
Merge made by the 'recursive' strategy.
 Makefile.am           |   3 +-
 driver-knc-spi-fpga.c | 904 ----------------------------------------------------------------------------------------------------------
 driver-knc.c          | 865 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 knc-asic.c            | 551 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 knc-asic.h            |  88 +++++++++++
 knc-transport-spi.c   | 148 ++++++++++++++++++
 knc-transport.h       |  23 +++
 7 files changed, 1677 insertions(+), 905 deletions(-)
 delete mode 100644 driver-knc-spi-fpga.c
 create mode 100644 driver-knc.c
 create mode 100644 knc-asic.c
 create mode 100644 knc-asic.h
 create mode 100644 knc-transport-spi.c
 create mode 100644 knc-transport.h
rav3n@bitrav3n:~/cgminer$
Looks like it is mergeable Smiley

1Rav3nkMayCijuhzcYemMiPYsvcaiwHni  Bitcoin stuff on my OneDrive
My RPC CoinControl for any coin https://bitcointalk.org/index.php?topic=929954
Some stuff on https://github.com/Rav3nPL/
-ck (OP)
Legendary
*
Offline Offline

Activity: 4046
Merit: 1622


Ruu \o/


View Profile WWW
July 29, 2014, 09:57:23 AM
 #15304

I did a git pull thiers repo ontop of your master tree
Code:
git clone https://github.com/ckolivas/cgminer
Cloning into 'cgminer'...
remote: Counting objects: 25124, done.
remote: Compressing objects: 100% (9251/9251), done.
remote: Total 25124 (delta 15643), reused 25124 (delta 15643)
Receiving objects: 100% (25124/25124), 20.73 MiB | 705.00 KiB/s, done.
Resolving deltas: 100% (15643/15643), done.
Checking connectivity... done.
rav3n@bitrav3n:~$ cd cgminer
rav3n@bitrav3n:~/cgminer$ git pull https://github.com/KnCMiner/cgminer
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 2 (delta 0)
Unpacking objects: 100% (4/4), done.
From https://github.com/KnCMiner/cgminer
 * branch            HEAD       -> FETCH_HEAD
Removing driver-knc-spi-fpga.c
Auto-merging Makefile.am
Merge made by the 'recursive' strategy.
 Makefile.am           |   3 +-
 driver-knc-spi-fpga.c | 904 ----------------------------------------------------------------------------------------------------------
 driver-knc.c          | 865 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 knc-asic.c            | 551 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 knc-asic.h            |  88 +++++++++++
 knc-transport-spi.c   | 148 ++++++++++++++++++
 knc-transport.h       |  23 +++
 7 files changed, 1677 insertions(+), 905 deletions(-)
 delete mode 100644 driver-knc-spi-fpga.c
 create mode 100644 driver-knc.c
 create mode 100644 knc-asic.c
 create mode 100644 knc-asic.h
 create mode 100644 knc-transport-spi.c
 create mode 100644 knc-transport.h
rav3n@bitrav3n:~/cgminer$
Looks like it is mergeable Smiley
Nice, thanks. I'll just pull it all in for the next release, though not having any of their new shiny gear I won't be building binaries or testing it. It seems they want to fully maintain it anyway.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
-ck (OP)
Legendary
*
Offline Offline

Activity: 4046
Merit: 1622


Ruu \o/


View Profile WWW
July 29, 2014, 11:20:58 AM
 #15305

New version: 4.5.0, 29th July 2014

Mainly new and updated drivers.


Human readable changelog:

- Driver for new device Hashratio, uses direct USB as per all other devices to work generically on any PC platform.
- Completely rewritten driver for avalon2/3 to use direct USB for generic PC usage, with automatic default voltage and frequency settings if not specified, on screen information, and much smarter fan control.
- Merged KnC updates for Neptune support.
- Changed the cointerra driver to not fail on old firmware with checksum errors, allowing people with these devices to easily generically plug them into their PCs.
- Put lots more documentation into READMEs.
- Fixed the windows packages to have windows style end of lines again and be readable in notepad.


Full changelog:

- Fix windows build for hashratio and ava2
- Demote bad checksum message in cointerra driver but allow message to still be
parsed since it won't allow existing firmwares to work otherwise
- Reorder and document the configure options
- Merge https://github.com/KnCMiner/cgminer into knc
- Change default voltage on ava2 to 0.666V because Satan
- Enable combined building of avalon2 and hashratio
- Fix stratum embedded fpgas to not duplicate work with other devices
- Implement smarter PID type fan control for ava2 allowing more generous
temperatures and far lower fan speeds for optimal power and noise usage. Adjust
default frequency to 450 as per recommendation.
- Fix various warnings in ava2
- Go back to polling design since async will not work for ava2 and fix various
read design errors
- Fix error in 2nd read functions for av2 and hro
- Correct init and read sequence for ava2, and convert from a polling mechanism
to a separate read thread
- Initial commit of ava2 conversion to direct USB
- Display frequency and voltage with ava2 on the statline
- Store fan percentage and display temp and fan percent for ava2
- Set avalon2 frequency and voltage to appropriate defaults if none are
specified on the command line
- Demote some ava2 messages that don't need to be errors and remove unused works
array
- Fix broken fan logic for ava2
- Fix hexdump on 64bit
- rockminer frequency is between 200 and 400 MHz
- fix jansson include path in cgminer-api compile instructions
- Remove requirement for ifndefs for avalon2 from the generic driver work
function
- Fix hashratio device name
- Make submit_nonce2_nonce return whether the share was valid or not
- Reinstate missing necessary init sequence for hashratio
- Handle disconnected hashratio devices
- Add hashratio frequency command line
- Fix stratum updates not being passed to hashratio devices and clean up
- Move to updated avalon2 type driver model for hashratio device
- Initial import and conversion of hashratio driver to direct USB
- Increase the internal buffer for API response,   as "stats" command response
can grow greater than 8K
- Detach test pool thread only if we have a blocking startup

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
rav3n_pl
Legendary
*
Offline Offline

Activity: 1361
Merit: 1003


Don`t panic! Organize!


View Profile WWW
July 29, 2014, 12:02:51 PM
 #15306

New version: 4.5.0, 29th July 2014
(...)
- Change default voltage on ava2 to 0.666V because Satan
(...)
It explains some things Cheesy

1Rav3nkMayCijuhzcYemMiPYsvcaiwHni  Bitcoin stuff on my OneDrive
My RPC CoinControl for any coin https://bitcointalk.org/index.php?topic=929954
Some stuff on https://github.com/Rav3nPL/
LARTAS
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 29, 2014, 12:57:15 PM
 #15307

Hi Mr Ckolivas
Is the New version without ZOMBI's for cointerra devices?
Thanks
-ck (OP)
Legendary
*
Offline Offline

Activity: 4046
Merit: 1622


Ruu \o/


View Profile WWW
July 29, 2014, 01:00:11 PM
 #15308

Hi Dr Ckolivas
Is the New version without ZOMBIEs for cointerra devices?
Yes it is.

Developer/maintainer for cgminer, ckpool/ckproxy, and the -ck kernel
2% Fee Solo mining at solo.ckpool.org
-ck
LARTAS
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 29, 2014, 01:01:19 PM
 #15309

Hi Dr Ckolivas
Is the New version without ZOMBIEs for cointerra devices?
Yes it is.

Thanks¡¡¡¡¡
JoseSan
Member
**
Offline Offline

Activity: 117
Merit: 10


View Profile
July 29, 2014, 03:02:11 PM
 #15310

One Cointerra difference I noticed - I guess I get a lot of hardware errors, but compared to 4.2.3, 4.5.0 is spamming "CTA 0: Notify bad match work", due to the change from a debug-log error to a warning:

https://github.com/ckolivas/cgminer/commit/0df5ca450874b790a418d928440f199bb70ad0ce#diff-742994a60422e991277c4e9150c70b41R400

The full debug log reads like:

CTA0: invalid nonce - HW error                                                                                       
CTA 0: Notify bad match work                                                                                         
False match sent: work id 398 midstate c97c5ce931b02152910c4b3a75784b309a22087b57011e49e2a9840b323424b0  blkhdr 6655f$
False match reports: work id 0x0169 MCU id 0x65030000 work diff 64.0                                                 
False match tested: nonce 0xc7b58fe8 noffset 41 813b0654da5ab31bfUü\205į×S¢®:^X                                     
False match devdiff set to 64.0 share diff calc 0

It's totally aesthetic so I'm not complaining. Was there a reason for the change?
Buchi-88
Legendary
*
Offline Offline

Activity: 3738
Merit: 2450



View Profile
July 29, 2014, 07:48:53 PM
 #15311

THX for the new version, i will test it 😋

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Rob7
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
July 31, 2014, 09:54:48 AM
 #15312

1. I tray below command for Rockminers, but it doesn't work
Quote
The second version
  --usb BAS:1,BFL:1,MMQ:0,ICA:0,KLN:0
allows you to specify how many devices to choose based on each device
driver cgminer has - the current USB drivers are:
AVA, BAS, BFL, BF1, DRB, HFA, ICA, KLN and MMQ.
What name is correct for:
ANU - Antminer U2
LIN - Rockminer R32
LIR - Rockminer RK/R3

2. Hotplug
Quote
--hotplug <arg>     Seconds between hotplug checks (0 means never check)
What is default value?
os2sam
Legendary
*
Offline Offline

Activity: 3577
Merit: 1090


Think for yourself


View Profile
July 31, 2014, 03:30:11 PM
 #15313

2. Hotplug
Quote
--hotplug <arg>     Seconds between hotplug checks (0 means never check)
What is default value?

Just a WAG but I would say 5 seconds

"--hotplug <arg>     Set hotplug check time to <arg> seconds (0=never default: 5) - only with libusb

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
aurel57
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
August 02, 2014, 01:21:31 PM
 #15314

I am having problems logging on to my S3. I was logged in last night and this morning it asked me to reenter my password to log in. When I did this is what I see:

/usr/lib/lua/luci/dispatcher.lua:448: Failed to execute function dispatcher target for entry '/'.
The called action terminated with an exception:
/usr/lib/lua/luci/sauth.lua:87: Session data invalid!
stack traceback:
   [C]: in function 'assert'
   /usr/lib/lua/luci/dispatcher.lua:448: in function 'dispatch'
   /usr/lib/lua/luci/dispatcher.lua:195: in function </usr/lib/lua/luci/dispatcher.lua:194>

It is still hashing on my pool ( @ 410-420 GH/s on 218.75 freq) and I have tried to log in a few more times with always the same results. Not sure if it's safe to power down or to use the reset button? Any help would be appreciated.
nst6563
Sr. Member
****
Offline Offline

Activity: 252
Merit: 254


View Profile
August 02, 2014, 04:59:49 PM
 #15315

Has anyone gotten CGMiner 4.5 to run with the Gridseed A1 units?  I see A1 files in it, I've compiled it with the A1 support....but it never detects the A1 hardware when I run it. 

command line:  sudo ./cgminer -o pooladdress -u username -p password --bitmine-a1-options 16000:800000:2000

The unit has a built in rpi and the A1 controller board is connected to the GPIO pins.  I've tried running on the image that came with the hardware, as well as compiling on a generic raspbian image....same result....it doesn't find the A1 hardware. 

What am I missing?

The hardware I'm speaking of is this one in particular:
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
August 02, 2014, 09:21:42 PM
 #15316

I am having problems logging on to my S3. I was logged in last night and this morning it asked me to reenter my password to log in. When I did this is what I see:

/usr/lib/lua/luci/dispatcher.lua:448: Failed to execute function dispatcher target for entry '/'.
The called action terminated with an exception:
/usr/lib/lua/luci/sauth.lua:87: Session data invalid!
stack traceback:
   [C]: in function 'assert'
   /usr/lib/lua/luci/dispatcher.lua:448: in function 'dispatch'
   /usr/lib/lua/luci/dispatcher.lua:195: in function </usr/lib/lua/luci/dispatcher.lua:194>

It is still hashing on my pool ( @ 410-420 GH/s on 218.75 freq) and I have tried to log in a few more times with always the same results. Not sure if it's safe to power down or to use the reset button? Any help would be appreciated.

I'm positive this is where you want to post this question

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

The LuCi and openwrt are not by con or the cgminer crew. It is possible one of the nice folks on here will know the answer though. Bitmain and openwrt would have actually done the programming for that part.

EDIT: I can't wait for a binary that uses a new version of cgminer. I really should look into if its possible to add a config file and have everything work as I like more then 3 backups.

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
aurel57
Legendary
*
Offline Offline

Activity: 1176
Merit: 1000



View Profile
August 03, 2014, 12:02:43 AM
 #15317

I am having problems logging on to my S3. I was logged in last night and this morning it asked me to reenter my password to log in. When I did this is what I see:

/usr/lib/lua/luci/dispatcher.lua:448: Failed to execute function dispatcher target for entry '/'.
The called action terminated with an exception:
/usr/lib/lua/luci/sauth.lua:87: Session data invalid!
stack traceback:
   [C]: in function 'assert'
   /usr/lib/lua/luci/dispatcher.lua:448: in function 'dispatch'
   /usr/lib/lua/luci/dispatcher.lua:195: in function </usr/lib/lua/luci/dispatcher.lua:194>

It is still hashing on my pool ( @ 410-420 GH/s on 218.75 freq) and I have tried to log in a few more times with always the same results. Not sure if it's safe to power down or to use the reset button? Any help would be appreciated.

I'm positive this is where you want to post this question

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

The LuCi and openwrt are not by con or the cgminer crew. It is possible one of the nice folks on here will know the answer though. Bitmain and openwrt would have actually done the programming for that part.

EDIT: I can't wait for a binary that uses a new version of cgminer. I really should look into if its possible to add a config file and have everything work as I like more then 3 backups.
Thank you. I have posted it there as well. Also PM Bitmain and he has now gotten back with me and said he has forward my problem to a engineer and I will hear something back.

zhaodong1982
Newbie
*
Offline Offline

Activity: 43
Merit: 0


View Profile WWW
August 04, 2014, 04:33:09 PM
 #15318

New version: 4.5.0, 29th July 2014

Mainly new and updated drivers.


Human readable changelog:

- Driver for new device Hashratio, uses direct USB as per all other devices to work generically on any PC platform.
- Completely rewritten driver for avalon2/3 to use direct USB for generic PC usage, with automatic default voltage and frequency settings if not specified, on screen information, and much smarter fan control.
- Merged KnC updates for Neptune support.
- Changed the cointerra driver to not fail on old firmware with checksum errors, allowing people with these devices to easily generically plug them into their PCs.
- Put lots more documentation into READMEs.
- Fixed the windows packages to have windows style end of lines again and be readable in notepad.


Full changelog:

- Fix windows build for hashratio and ava2
- Demote bad checksum message in cointerra driver but allow message to still be
parsed since it won't allow existing firmwares to work otherwise
- Reorder and document the configure options
- Merge https://github.com/KnCMiner/cgminer into knc
- Change default voltage on ava2 to 0.666V because Satan
- Enable combined building of avalon2 and hashratio
- Fix stratum embedded fpgas to not duplicate work with other devices
- Implement smarter PID type fan control for ava2 allowing more generous
temperatures and far lower fan speeds for optimal power and noise usage. Adjust
default frequency to 450 as per recommendation.
- Fix various warnings in ava2
- Go back to polling design since async will not work for ava2 and fix various
read design errors
- Fix error in 2nd read functions for av2 and hro
- Correct init and read sequence for ava2, and convert from a polling mechanism
to a separate read thread
- Initial commit of ava2 conversion to direct USB
- Display frequency and voltage with ava2 on the statline
- Store fan percentage and display temp and fan percent for ava2
- Set avalon2 frequency and voltage to appropriate defaults if none are
specified on the command line
- Demote some ava2 messages that don't need to be errors and remove unused works
array
- Fix broken fan logic for ava2
- Fix hexdump on 64bit
- rockminer frequency is between 200 and 400 MHz
- fix jansson include path in cgminer-api compile instructions
- Remove requirement for ifndefs for avalon2 from the generic driver work
function
- Fix hashratio device name
- Make submit_nonce2_nonce return whether the share was valid or not
- Reinstate missing necessary init sequence for hashratio
- Handle disconnected hashratio devices
- Add hashratio frequency command line
- Fix stratum updates not being passed to hashratio devices and clean up
- Move to updated avalon2 type driver model for hashratio device
- Initial import and conversion of hashratio driver to direct USB
- Increase the internal buffer for API response,   as "stats" command response
can grow greater than 8K
- Detach test pool thread only if we have a blocking startup


Thanks for your hardwork! ckolivas!
allcoinminer
Hero Member
*****
Offline Offline

Activity: 784
Merit: 504


View Profile
August 05, 2014, 11:36:37 AM
 #15319

"--load-balance Change multipool strategy from failover to quota based balance"
What this means exactly? Will this only just load balance equally to the set pools?
Can we set custom % wise quota for each pool? I found this option in Antminer S3.
Example: 10% to Pool 1, 50% to Pool2 and 40% to Pool 3?
It will be great if this is answered in context with the Antminer S3 too.
Newar
Legendary
*
Offline Offline

Activity: 1358
Merit: 1000


https://gliph.me/hUF


View Profile
August 05, 2014, 11:52:16 AM
 #15320

"--load-balance Change multipool strategy from failover to quota based balance"
What this means exactly? Will this only just load balance equally to the set pools?
Can we set custom % wise quota for each pool? I found this option in Antminer S3.
Example: 10% to Pool 1, 50% to Pool2 and 40% to Pool 3?
It will be great if this is answered in context with the Antminer S3 too.

from the readme:
https://github.com/ckolivas/cgminer/blob/master/README

Quote
LOAD BALANCE:
This strategy sends work to all the pools on a quota basis. By default, all
pools are allocated equal quotas unless specified with --quota. This
apportioning of work is based on work handed out, not shares returned so is
independent of difficulty targets or rejected shares. While a pool is disabled
or dead, its quota is dropped until it is re-enabled. Quotas are forward
looking, so if the quota is changed on the fly, it only affects future work.
If all pools are set to zero quota or all pools with quota are dead, it will
fall back to a failover mode. See quota below for more information.

The failover-only flag has special meaning in combination with load-balance
mode and it will distribute quota back to priority pool 0 from any pools that
are unable to provide work for any reason so as to maintain quota ratios
between the rest of the pools.

Easiest I think is to change it from within cgminer. Hit "P" and it should be self explanatory from there. Once done and back in the main screen hit "S" and write a config file. From then on change your command line to load that config file at start up ( --config or -c ).

OTC rating | GPG keyid 1DC91318EE785FDE | Gliph: lightning bicycle tree music | Mycelium, a swift & secure Bitcoin client for Android | LocalBitcoins
Pages: « 1 ... 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 [766] 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 ... 843 »
  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!