Bitcoin Forum
May 10, 2024, 08:56:58 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 »
161  Other / Off-topic / Re: BFL Single and BFL mini-rig seems to have inferior performance on: October 16, 2012, 02:51:43 PM
I suspect you're bumping into the same reason their initial specs didn't match the delivered product: the power (and perhaps clock?) estimates out of these tools are wildly wrong because they don't account for the very high toggle rates.

Your numbers would have been more in line with what BFL originally claimed for the product but couldn't deliver.

^^^ This.
162  Bitcoin / Pools / Re: [2000 GH/s] EMC: No Fee/PPS/DGM/Dwolla Payout/SMS/Yubikey/GBT/Vardiff on: October 16, 2012, 02:33:15 PM
Ok, emails should be fixed now, I found the problem.

Thanks - it's working for me now again.

(Sorry for not replying sooner.  I've been off of the forums for a few days.)
163  Bitcoin / Pools / Re: [2000 GH/s] EMC: No Fee/PPS/DGM/Dwolla Payout/SMS/Yubikey/GBT/Vardiff on: October 12, 2012, 08:59:36 PM
Speaking of missing emails...  I am not getting notifications of when one of my miners goes offline.  (I used to.)  I'm on gmail.com.
164  Bitcoin / Pools / Re: [2000 GH/s] EMC: No Fee/PPS/DGM/Dwolla Payout/SMS/Yubikey/GBT/Vardiff on: October 11, 2012, 09:28:02 PM
Sweet Baby Jesus I just scored my first block today !!!!!!! WHOO HOOO
Yeah, I've only been mining for 3 weeks on a BFL single and I've found 2 (yes TWO!) blocks in the last week.  With good luck like that, I'm probably doomed to NEVER find another one in my life!  Cheesy
165  Other / Off-topic / Re: Butterfly Labs invests heavily in high speed production equipment on: October 11, 2012, 04:03:21 AM
This explanation makes me feel better.  IF they were trying to bring up the first batch on the new in-house production line, I would expect the first shipment to slip to December or January because of all of the little things that pop up.  But since they're making the first batch at an outside contractor, they have a very good chance of making November. 

I have corralled many herds of these cats (doing one right now on my job) and I can say it is very frustrating.  Some times something as simple as a $0.02 capacitor or resistor holds up the whole thing because you ASSUMED that they would be available by the millions.  But when you go to order them, someone else (IBM, Intel, Dell, whoever) just ordered every available one for some project they have and you have to wait XX weeks for the manufacturer to make more.
166  Bitcoin / Hardware / Re: High Efficiency FPGA & ASIC Bitcoin Mining Devices https://BTCFPGA.com on: October 10, 2012, 03:06:02 AM
Does "Size of ASIC chip on board" refer to the process node, such as 130nm or 90nm?
I do not think so.  I think what Tom was saying here was the size of the chip package.  ie, the dimensions of the chip on the board.
167  Bitcoin / Mining speculation / Re: What are the chances Bfl. Basic. Avalon. Etc use the same gear? on: October 01, 2012, 10:05:03 PM
Very unlikely in my opinion.
168  Other / Off-topic / Re: BFL ** Surprise's ** on: October 01, 2012, 06:45:52 PM
47% of the people in this thread don't get it.
169  Bitcoin / Hardware / Re: Can someone explain how the ASIC vendors can supply double spec hardware ? on: September 30, 2012, 05:26:32 PM
Tom mentioned plans to have 2 designs (2nd one with double the amount of chips).

Do you have a link to that quote? Just that it wasn't on his website last week.
https://bitcointalk.org/index.php?topic=79637.msg1229735#msg1229735
170  Bitcoin / Hardware / Re: High Efficiency FPGA & ASIC Bitcoin Mining Devices https://BTCFPGA.com on: September 29, 2012, 06:52:00 AM
Damnit.  Looks like Tom's web site is down at the moment.  Hopefully just a short term thing.
171  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overclock monitor fanspeed RPC linux/windows/osx/mip/r-pi 2.7.6 on: September 28, 2012, 10:44:06 PM
Here is my guide for people like me who are not familiar with linux to get cgminer running on a Raspberry Pi.  Note that dlasher and burger did 99% of the work here.  I just verified it and added some comments.  Thanks guys!  

Of course, big thanks to ckolivas and kano for doing the other 99.99% of the work writing cgminer.   Grin  The first week of my mined bitcoins will be donated to you two.  (If you think it is worth adding all or part of this to the README, please do.  Or just a link to this post?)

Start with a fresh install of the Raspbian OS.  I used the 2012-09-18 release.
On first boot, configure the keyboard, password, locale and timezone as appropriate.
Optionally, change the memory_split, ssh and boot_behavior.  
Choose "update" to get any recent updates.
Choose <Finish> and reboot.   (type "sudo reboot" at command prompt)

A) If you have choosen boot_behavior to boot direct to desktop, open an LXterminal window.

B) If you have choosen boot_behavior to NOT boot direct to desktop, log in.  You now have 2 choices:
  1) (recommended) type "startx" to start the desktop then open an LXterminal window.
  2) use the command line directly


All of the following commands are typed at the command line.
Do NOT type anything on lines starting with "##" (including the "##") as these are comments for you.

Code:
## Install all required tools
sudo apt-get install build-essential git dh-autoreconf libcurl4-gnutls-dev libusb-1.0-0-dev libusb-dev libncurses-dev libudev-dev yasm screen
## This will ask you:
##    Do you want to continue [Y/n]?
## Press Y and Enter   (Then wait many minutes for it to finish)

## Get the latest version of cgminer
cd /usr/src
sudo git clone https://github.com/ckolivas/cgminer.git
cd cgminer

## Set the flags for the compiler
CFLAGS="-g -O2 -W -Wall"

## Configure cgminer
## Do not type any un-used options.  See the README of cgminer for details.
## For example if you do not have any Butterfly Labs hardware, to not type "--enable-bitforce"
sudo ./autogen.sh --enable-scrypt --enable-bitforce --enable-icarus  --enable-modminer --enable-ztex --with-libudev
## I have a BFL single so I used:
##    sudo ./autogen.sh --enable-bitforce --with-libudev
## Again, wait many minutes for this to finish
## When done, you should see a block of text that starts with something like this:
##    ------------------------------------------------------------------------
##    cgminer 2.7.6
##    ------------------------------------------------------------------------
##
##    Configuration Options Summary:
##
## If you do not see that or the last line is an error, do not continue.


## build cgminer
sudo make clean
sudo make
## Again, wait many minutes for this to finish

## Connect and power up your FPGA hardware then run cgminer
## Substitute the proper values you use for yourpool, yourport, youruser, and yourpassword
/usr/src/cgminer/cgminer -S auto -o http://www.yourpool.com:yourport -u youruser -p yourpassword
172  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overclock monitor fanspeed RPC linux/windows/osx/mip/r-pi 2.7.6 on: September 28, 2012, 08:30:11 PM
Thanks to dlasher, SAC, burger, and especially ckolivas and kano; my BFL single is now running on my R-Pi!  Soon I will re-post dlasher's guide with the corrections I used to make it work for me.  (First I will test with a fresh Raspbian install.)

Code:
cgminer version 2.7.6 - Started: [2012-09-28 13:26:28]
--------------------------------------------------------------------------------
 (5s):433.4 (avg):714.6 Mh/s | Q:4  A:12  R:0  HW:0  E:300%  U:17.1/m
 TQ: 0  ST: 2  SS: 0  DW: 1  NB: 2  LW: 15  GF: 0  RF: 0  WU: 18.5
 Connected to http://us1.eclipsemc.com:8337 with LP as user <myusername>
 Block: 00000038ba38b354b3fd8173cd55cebb...  Started: [13:26:28]
--------------------------------------------------------------------------------
 [P]ool management [S]ettings [D]isplay options [Q]uit
 BFL 0:  45.7C         | 771.9/918.7Mh/s | A:13 R:0 HW:0 U:18.54/m
--------------------------------------------------------------------------------

 [2012-09-28 13:26:27] Started cgminer 2.7.6
 [2012-09-28 13:26:28] Probing for an alive pool
 [2012-09-28 13:26:28] Long-polling activated for http://us1.eclipsemc.com:8337/LP
 [2012-09-28 13:26:28] Pool 0 http://us1.eclipsemc.com:8337 alive
 [2012-09-28 13:26:28] New block detected on network before longpoll
 [2012-09-28 13:26:28] Pool 1 http://us.ozco.in:8331 alive
 [2012-09-28 13:26:33] Accepted 00e6e730 Diff 1 BFL 0 pool 0
 [2012-09-28 13:26:38] Accepted 09631bd0 Diff 1 BFL 0 pool 0
 [2012-09-28 13:26:43] Accepted a45652a8 Diff 1 BFL 0 pool 0
 [2012-09-28 13:26:43] Accepted a79f96ba Diff 1 BFL 0 pool 0
 [2012-09-28 13:26:48] Accepted 280b28cf Diff 1 BFL 0 pool 0
173  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overclock monitor fanspeed RPC linux/windows/osx/mip/r-pi 2.7.6 on: September 28, 2012, 03:00:09 AM
When compiling you need the development package of the library when it is not found so...

Code:
apt-file search libudev.h
libudev-dev: /usr/include/libudev.h
Thanks but that did not work for me:
Code:
root@raspberrypi:/usr/src/cgminer# apt-file search libudev.h
bash: apt-file: command not found

- The linux n00b

Edit: I hope this is not too off-topic but I believe it will be useful for other (n00b) users to get cgminer working on their Raspberry Pi.  Or at least those that want to compile from source.  Now that I think about it, didn't someone offer pre-compiled binaries for the RPi?  Or was that for one of the Bitcoin clients???
174  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overclock monitor fanspeed RPC linux/windows/osx/mip/r-pi 2.7.6 on: September 28, 2012, 02:16:15 AM
Ah crap.  I scrolled up and I see the problem:

Quote
checking for working alloca.h... yes
checking for alloca... yes
checking for OpenCL... no
checking for pthread_create in -lpthread... yes
checking for json_loads in -ljansson... no
checking for library containing addstr... -lncurses
checking for yasm... /usr/bin/yasm
checking if yasm version is greater than 1.0.1... yes
checking libudev.h usability... no
checking libudev.h presence... no
checking for libudev.h... no
configure: error: libudev not found
root@raspberrypi:/usr/src/cgminer#

Fixing now...

Edit: Or I'm trying to fix it but I'm clueless (apparently).  I tried:
Quote
apt-get install libudev

with no luck.  If someone can help me with this I would appreciate it.
175  Bitcoin / Mining software (miners) / Re: CGMINER GPU FPGA overclock monitor fanspeed RPC linux/windows/osx/mip/r-pi 2.7.6 on: September 28, 2012, 02:10:19 AM
While I see r-pi listed in the subject, I see no instructions or downloads provided. Am I missing something?

For Raspbian, my steps went something like this:
<... snip ...>

Thank you VERY much for this guide.  I did encounter a problem with this step:

Quote
root@raspberrypi:/usr/src/cgminer# bash ./autogen.sh --enable-scrypt --enable-bitforce --enable-icarus  --enable-modminer --enable-ztex --with-libudev
Running autoreconf -if...
Configuring...
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type:  --enable-modminer
checking build system type... Invalid configuration ` --enable-modminer': machine ` --enable' not recognized
configure: error: /bin/bash ./config.sub  --enable-modminer failed
root@raspberrypi:/usr/src/cgminer#

Then I remembered I did not need modminer (no HW for me - YET) so I trimmed it down to the command that I needed:
Quote
root@raspberrypi:/usr/src/cgminer# bash ./autogen.sh --enable-bitforce --with-libudev
 

... and it worked.  But then "make all" also failed:
Quote
root@raspberrypi:/usr/src/cgminer# make all
make: *** No rule to make target `all'.  Stop.

root@raspberrypi:/usr/src/cgminer# make
make: *** No targets specified and no makefile found.  Stop.

root@raspberrypi:/usr/src/cgminer# ls -l M*
-rw-r--r-- 1 root root  2470 Sep 27 20:31 Makefile.am
-rw-r--r-- 1 root root 91117 Sep 27 20:47 Makefile.in

Now I'm stuck.  Damnit - I hate being a n00b at new stuff!   Wink  (Although I used linux in a previous life a little bit, I'm mostly a Windblows guy.   Grin )
176  Other / Off-topic / Re: Frist Look at BFL's ASIC Hardware on: September 26, 2012, 06:52:13 PM
Pretty sure 'passed' is correct.
Really?

http://dictionary.reference.com/browse/past?s=t
adverb
13.
so as to pass by or beyond; by: The troops marched past.


http://dictionary.reference.com/browse/passed?s=t

177  Other / Off-topic / Re: Frist Look at BFL's ASIC Hardware on: September 26, 2012, 06:46:44 PM
FRIST, man

FRIST

How that gets passed anyone is beyond me.
Perhaps you meant PAST instead of PASSED???   Grin  (Live in a glass house very long???)
178  Other / Off-topic / Re: "Frist Look at BFL's ASIC Hardware" on: September 26, 2012, 05:27:06 PM
Running 8x of the chips at full speed (5Gh/s) and voltage in the SC Single then under-volting and under-clocking 1x of the chips in the Jalapeno makes perfect sense from a thermal (heat) perspective.  I think the Single will have a large heatsink and fan similar to the current FPGA Singles while the Jalapeno will have a tiny heatsink and no fan.  It's all about the heat and how to get rid of it. 

This is also a good strategy for yield improvement.  Why do you think Intel, AMD and nVidia have different speed bins for their chips?  They would love to have all of their chips run at 4GHz or (much) higher but this is not how chip production works.  Instead, there is a distribution curve of varying speeds in any given "lot" (or batch) of chips.  Some are faster than average, others are slower.  The Jalapeno allows BFL to sell chips that are fully functional but not quite fast enough for the SC Single or SC mini-rig performance points.  (If anyone asks I can elaborate on this further.)

Marketing and price / performance points are also a factor I assume.  (For example, why have a $149 price point at all?  The current "low end" of the BFL product line it roughly 4x that.  Why not keep the cheapest price in the $500 to $600 range?  A: Marketing.)
179  Other / Off-topic / Re: BFL Requests Input on: September 26, 2012, 03:19:30 AM
I'd like to add my name to the list.  I'm fairly new to the bitcoin community but I'm an EE and I work in an ASIC design company (CPU design - not bitcoin mining).  BFL_Josh can verify my real life identity and the company I work for from my order on 8/8/12 of a Bitforce Single (arrived 9/24/12) and an SC Single upgrade.  I am familiar with the entire process of designing full custom chips from initial design to full production.  I am also familiar with board design and manufacturing.  I really want to see with my own eyes the state of the SC designs and the level of professionalism of their manufacturing facilities.  Hell - I'll even pay my own travel expenses. 

Summary:
- EE doing custom chip and board design and manufacture for 20+ years
- Own 1 Single (for 1 day) & have 1 SC Single upgrade on order
- I am willing to pay part/all of my travel expenses.


PS - I like the idea of an "open house" day at BFL.  1 or 2 sponsored people (travel expenses paid by BFL) plus anyone else that will pay their own way.
180  Economy / Marketplace / Re: ["WAIT LIST"] BFL Singles Order Date / Ship Date on: September 25, 2012, 08:26:11 PM
8/8/2012  1                                  Chip Geek
Shipped 9/21/2012, received 9/24/2012
Pages: « 1 2 3 4 5 6 7 8 [9] 10 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!