Bitcoin Forum
June 14, 2024, 01:16:16 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 [167] 168 169 170 171 »
3321  Bitcoin / Bitcoin Discussion / Re: The Tahoe-LAFS Bitcoin Grid - topic on: December 13, 2010, 12:03:47 AM
I got it running, but I don't know how to use introducer. I think this tahoe-lafs thing is more difficult than it needs to be.

The simplest way is to join public grid http://pubgrid.tahoe-lafs.org/.
Second way is to run own introducer by running 'tahoe create-introducer' command.
Last way, if you are interested, you may ask to access to volunteergrid.

In any case, you will get introducer's strange URL started with pb:// which you have to enter to ~/.tahoe/tahoe.cfg under "introducer.furl". Then start your node and everything will work!
3322  Bitcoin / Bitcoin Discussion / Re: The Tahoe-LAFS Bitcoin Grid - topic on: December 12, 2010, 11:51:32 PM
Is anybody still experimenting actively with a Tahoe-LAFS grid?

Yes, I'm using it almost year very intensively (for backups ~50GB). I even made binding for pyfilesystem https://code.google.com/p/pyfilesystem so anybody can mount Tahoe-LAFS as normal drive (Windows, Linux, Mac).

Unfortunately there is no real effort for accounting, I think joining Tahoe and Bitcoin would be great. Unfortunately everybody who says that running Tahoe-LAFS is too much complicated is right. There is effort to simplify installation on all platforms, but IMHO it is not ready for end user yet. On the other side, TahoeLAFS is great piece of software!

Question to stability - there were made massive improvements and I can say it is pretty stable now. But I don't know which type of connection uses peers in my grid.
3323  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 12, 2010, 06:42:32 PM
Feature request: Please support targets with less than 32bits of zeros
Reason: Miner is not properly working on testnet, where target can be under that. I'm also working on cooperative mining server and would like to introduce small targets for counting shares of every worker. DiabloMiner with correct target handling will be compatible with this mining server...

Thanks!
3324  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 10, 2010, 03:36:14 PM
Hi Diablo, I tested new binary on MacOS, which was not working before two days. Everything works perfectly now!
3325  Bitcoin / Mining software (miners) / Re: OpenCL miner for the masses on: December 09, 2010, 10:06:29 AM
After downloading the latest drivers, I'm getting 15 Mhash/sec on a Geforce 9600 GT. Pretty cool, though I wish it worked with the pooled mining... I am too impatient to wait days for a result ^_^

Anyone know if there are plans to support GPU pooled mining? That would be fantastic.

Yes, I'm working on that: http://bitcointalk.org/index.php?topic=1976.40 . It is already working. Want to go live until Sunday. m0mchil's miner working well with that.
3326  Bitcoin / Development & Technical Discussion / Re: Version 0.3.18 on: December 09, 2010, 02:15:50 AM
Please start your own block chain, rather than forking the network like this.
I hope it is clear the havoc that your push to include non-currency data is causing.

Agree. I don't see any reason why non standard, maybe non-financial transaction should be inside financial block chain. Also don't understand why major miners are going to fork client. I thought this software is about currency. So I'm absolutely OK with last release and I already updated all my miners.

I'm definitely NOT against software based on chains and personally will support any BitDNS effort, but, please, keep bitcoin chain consistent.
3327  Other / Off-topic / Re: distributed off-site data storage paid for in bitcoin? on: December 09, 2010, 01:43:16 AM
Do you know Tahoe-LAFS project

No, this is awesome, but how does one pay for the service?

Infrastructure for accounting (and payments) is available, but nobody done this yet. Volunteergrid working on members honesty, that nobody store more than share (* share ratio).
Btw Zooko (project coordinator) like an idea to use bitcoins for storage payments. I think TahoeLAFS together with Bitcoin would be amazing cloud storage solution. Maybe we will find somebody interested in accounting implementation here...
3328  Other / Off-topic / Re: distributed off-site data storage paid for in bitcoin? on: December 09, 2010, 01:27:06 AM
Do you know Tahoe-LAFS project (http://tahoe-lafs.org)? I think it is project what you are talking about. It is decentralized storage (SPOF still here, but AFAIK removing of them is in progress) with strong security model. There are also plans for accounting, but nobody done it yet. By the way, they are very progressive - they already accepts Bitcoins Smiley.

I'm member of it's volunteergrid for a while and must say it works for me. Currently using around 40GB of cloud storage mapped as Windows drive.

Edit: SPOF is 'introducer' - nodes are asking them for another peers in grid. It does not manage any access rights and it is not a data hub; file transfers go directly between nodes, it is real p2p. Currently there can be many introducers in one grid, so this is not _real_ SPOF.
3329  Bitcoin / Pools / Re: Cooperative mining on: December 08, 2010, 10:11:52 AM
I will change my miner to check lower targets.

Glad to read that!

Quote
Keep in mind that GPUs are perhaps 30x+ faster than CPUs. Are you going to adjust the target to control the number of results you receive from specific client? Because with target suitable for getting 1 result per minute from CPU, you may receive 1 result per SECOND from a GPU.

You are right. Currently I have same target for all workers, but dynamic target depending on worker performance is in my TODO. I'm testing on Nvidia ION (~2000khash/s) and HD 5970 (~560mhash/s) and think target near 8 zeros should be fine for beginning. 8 zeros (32bit) gives one blocks every ~30 minutes on Nvidia and every tens seconds on Radeon, which is yet OK.
3330  Bitcoin / Pools / Re: Cooperative mining on: December 08, 2010, 10:02:03 AM
It's too slow to do a full 256-bit comparison for each hash generated.  Taking the lead from mainline bitcoin, miners tend to "cheat" and simply look for a certain number of zero bits in the area that, when byte-swapped, holds the high-order bits of a 256-bit number.  My cpuminer stops if the top 32 bits are all zero.  Mainline bitcoin stops scanning for hashes if 16 bits are zero:

I'm glad I understood your code well Smiley. I agree full check is too expensive. But what about compromise - check so many bits for zeros how many zeros is in target sent by getwork? Simply do not have hardcoded '32 bits' inside miner... This should be quite simple, fast and good enough!

By the way, I'm using modified version of your scanhash_c for checking proof-of-work in my server. My reward from first block found by cooperative mining is yours.
3331  Bitcoin / Pools / Re: Cooperative mining on: December 08, 2010, 01:25:27 AM
Cooperative miner is almost ready. It is already working and pretty fast. Tested on 'testnet', my Intel Atom can manage clients >500Mhash/s without any significant load. There is just need for some web UI for users and a lot of code cleanup.

It is working with jgarzik's cpuminer, m0mchil's python miner and Diablo's java miner pretty well. But I found one problem in comparing targets. As I understand their codes well, they don't fully compare found hashes with target. So if I set difficulty pretty low, because I want many low-difficulty blocks for fair accounting, miners simply does not return correct hashes (hashes corresponding current target).

For example DiabloMiner. Even if I set target to 'ffff..ffff00', miner does not return hashes with less than eight zeros on the end. Am I wrong or miners really need patches to work correctly with low-difficulty targets?

When I set target with eight zeros on the end (so all tested miners work correctly with that target), computer with ~2mhash/s gives around 2 blocks per hour, which is IMHO too little for fair short-term distribution.
3332  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: December 07, 2010, 02:49:40 PM
Thanks. I tried to find solution here before post, but missed this comment  Roll Eyes
Scroll up to this post, in the current thread.  Your libcurl devel pkg is missing, or your libcurl devel pkg is missing autoconf macros.
3333  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 07, 2010, 01:20:12 PM
Just installing miner to my friend. We found this error on his MacOS box. Did anybody see this already? Thanks

Quote
mac-mini-david:DiabloMiner david$ ./DiabloMiner-OSX.sh -u **** -p ****
Added GeForce 9400 (#1) (2 CU, 1x vector, local work size of
ERROR: [CL_INVALID_BUILD_OPTIONS] : OpenCL Error : clBuildProgram failed: Invalid build options "-D VECTORS=1 -D NS="(u)((nonce * 1) + 0)" -D CHECKOUTPUT="if(H == 0) {output[0] = ns;}" -D WORKGROUPSIZE="""

Exception in thread "main" java.lang.Exception: Failed to build program on GeForce 9400 (#1)
        at com.diablominer.DiabloMiner.DiabloMiner$DeviceState.<init>(DiabloMiner.java:371)
        at com.diablominer.DiabloMiner.DiabloMiner.execute(DiabloMiner.java:198)
        at com.diablominer.DiabloMiner.DiabloMiner.main(DiabloMiner.java:90)
3334  Bitcoin / Mining software (miners) / Re: New demonstration CPU miner available on: December 07, 2010, 08:41:47 AM
Hi jgarzik, getting problem with configure on pretty old CentOS 5. Any idea, please?  Roll Eyes

Quote
[root@virt10 jgarzik-cpuminer-080ddb6]# ./autogen.sh
[root@virt10 jgarzik-cpuminer-080ddb6]# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
...
checking pkg-config is at least version 0.9.0... yes
./configure: line 4516: syntax error near unexpected token `,'
./configure: line 4516: `LIBCURL_CHECK_CONFIG(, 7.10.1, ,'
3335  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 05, 2010, 05:49:26 PM
Update: The -52 errors only happens on SDK 2.2, and now the miner ignores them since they only happen periodically. It does not happen with 2.1 and has no effect on the mining process, and I suggest you use 2.1 anyhow since it runs much faster.

Tried 2.1 and got very poor performance. Core is working only on ~60%. Core is working on 100% after short time, but performance is still poor. 2.2 working perfectly for me (core on ~94%).   --- Oh, finally found 'bitalign' option.
3336  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 05, 2010, 11:08:36 AM
I tried newest binary on Win7 and ATI right now and it is also not working Sad

Quote
ERROR: Failed to queue kernel, error -52

I was so happy there is no need to getwork patch, but I had to revert everything back to old version, because current version is not working on any of my cards Sad.
3337  Other / CPU/GPU Bitcoin mining hardware / Re: Official DiabloMiner Thread on: December 05, 2010, 01:44:27 AM
Quote
./DiabloMiner-Linux.sh -u **** -p ****
Added GeForce 9800 GX2 (16 CU, 1x vector, local work size of clang: Too many positional arguments specified!
Can specify at most 1 positional arguments: See: clang --help

Same on Win7 & Nvidia. Previous binaries working like a charm.

Btw thanks for getwork update! It's cool we do not need patch anymore!
3338  Economy / Service Announcements / Re: Announcing the Bitcoin Laundry (beta) on: December 03, 2010, 05:49:04 PM
It would be better to enter amount which will be received, not paid. Commision should be added to final amount to send. Currently, when I want to send 1 BTC to someone, I have to calculate commision itself.

Are you performing some scrambling in transaction? For example, when I send 1BTC, it should pay some amount instantly and some amount later even from another sending address. This way it should me much harder to pair both transactions.

By the way, I see you are living in Slovakia. Do you speak Slovak or Czech?
3339  Bitcoin / Project Development / Re: Bitcoin T-Shirt on: December 02, 2010, 05:13:58 PM
I once suggested this idea too.  But it appeared it might be a bad idea.  It would be a bit as if you were claiming publicly that you fraud tax.

If somebody is fan of pistols and guns (btw I'm not), that does not mean he shoot kittens every morning.

I like idea and I will definitely buy one, but agree with SmokeTooMuch - no crappy logos, please.
3340  Bitcoin / Mining / Re: Join a pooled bitcoin mining effort on: December 02, 2010, 04:52:19 PM
93 clients for a total of 66632 khashes/s or something similar to that. Wee!  Cheesy

How many unique addresses are joined to mining? '93 clients' aren't probably computers/users, but threads/cores, because remote miner is single threaded.
Pages: « 1 ... 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 [167] 168 169 170 171 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!