Bitcoin Forum
April 26, 2024, 12:35:55 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 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41 42 43 44 45 46 47 48 49 »
701  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 10, 2014, 08:21:50 AM
What X15 Nvidia 750ti miners are available? Or is it just ccminer?
Checked OP and last several pages but didn't find anything.

Basically anything like that is ccminer only.

This one?
https://github.com/tpruvot/ccminer
Is there a pre-compiled one for Linux?
Or how to fix this as my device can't run CUDA 6+

nvcc -gencode=arch=compute_50,code=\"sm_50,compute_50\" -I . -I/usr/local/cuda/include  -I./compat/jansson --maxrregcount=128 -o cuda_fugue256.o -c cuda_fugue256.cu
nvcc fatal   : Unsupported gpu architecture 'compute_50'
make[2]: *** [cuda_fugue256.o] Error 255
make[2]: *** Waiting for unfinished jobs....
702  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 10, 2014, 04:45:44 AM
What X15 Nvidia 750ti miners are available? Or is it just ccminer?
Checked OP and last several pages but didn't find anything.
703  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CLD] XCloudcoin | Profit Share | XCloudIM Google Play | 1 Million coins on: September 10, 2014, 04:41:37 AM
Is there a way to directly mine CLD or is it multicoin pool only?
704  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PXC] Phoenixcoin v0.6.6.0 ~ NeoScrypt on: September 09, 2014, 06:50:39 PM
wow 7 BTC trading volume & price up 136 % (481 % this week)

happy to have mine at lost with cloudmining (http://pxc.theblocksfactory.com/gettingstarted : mining on the cloud)

Where was the 7 BTC trading done at?
705  Alternate cryptocurrencies / Pools (Altcoins) / Re: [POOL] burst-pool.cryptoport.io [ No-Deadline Limit ] [ Instant Payout ] on: September 09, 2014, 06:45:37 PM
What tools are available for creating plots?
Is there a way to have a program on one computer startup and detect the amount of free space on drives, then either auto plot on the free space, or from a remote control panel manually set the plots?
Have some GPU mining rigs, and setting up plots on each one is a pain since they're all CLI.
706  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 08, 2014, 12:41:36 AM
the compiler doesn't find mpir, a nice tutorial has been posted a few page back (yesterday actually)

found it: https://gist.github.com/zcshiner/4b32980792d367222304

Thanks again Smiley
echo "export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> ~/.bashrc
Fixed compilation.

When I run ccminer I get:
./ccminer: error while loading shared libraries: libcudart.so.6.5: cannot open shared object file: No such file or directory

I'll figure it all out eventually Smiley
you also need to add /usr/local/cuda/lib64 to LD_LIBRARY_PATH

Got that set in my bashrc now.



modprobe: ERROR: ../libkmod/libkmod-module.c:809 kmod_module_insert_module() could not find module by name='nvidia_340'
modprobe: ERROR: could not insert 'nvidia_340': Function not implemented
[2014-09-08 00:39:36] Unable to query number of CUDA devices! Is an nVidia driver installed?

/ccminer$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2014 NVIDIA Corporation
Built on Thu_Jul_17_21:41:27_CDT_2014
Cuda compilation tools, release 6.5, V6.5.12

707  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 08, 2014, 12:19:30 AM
the compiler doesn't find mpir, a nice tutorial has been posted a few page back (yesterday actually)

found it: https://gist.github.com/zcshiner/4b32980792d367222304

Thanks again Smiley
echo "export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> ~/.bashrc
Fixed compilation.

When I run ccminer I get:
./ccminer: error while loading shared libraries: libcudart.so.6.5: cannot open shared object file: No such file or directory

I'll figure it all out eventually Smiley
708  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 07, 2014, 11:37:40 PM
you need to show the error message from the compiler (few lines before what you show)

Looks like I need to set the path to mpir for the make file it seems.

nvcc -g -O2 -I . -Xptxas "-abi=no -v" -gencode=arch=compute_30,code=\"sm_30,compute_30\" -gencode=arch=compute_35,code=\"sm_35,compute_35\" -gencode=arch=compute_50,code=\"sm_50,compute_50\" --maxrregcount=80 --ptxas-options=-v -I./compat/jansson -o x13/m7.o -c x13/m7.cu
ptxas info    : 0 bytes gmem, 168 bytes cmem[3]
ptxas info    : Compiling entry function '_Z25m7_ripemd160_gpu_hash_120ijPm' for 'sm_30'
ptxas info    : Used 26 registers, 336 bytes cmem[0]
x13/m7.cu:17:18: fatal error: mpir.h: No such file or directory
 #include "mpir.h"
                  ^
compilation terminated.
make[2]: *** [x13/m7.o] Error 1
make[2]: *** Waiting for unfinished jobs....
x13/cuda_tiger192.cu(682): warning: variable "hash" was declared but never referenced

x13/cuda_tiger192.cu(714): warning: variable "in" was declared but never referenced

x13/cuda_m7_sha256.cu(380): warning: variable "hash" was declared but never referenced

x13/cuda_ripemd160.cu(319): warning: variable "in" was declared but never referenced
709  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner & ccMiner CUDA based mining applications [Windows/Linux/MacOSX] on: September 07, 2014, 07:03:44 PM
I have been away for a while, so just catching up.

Just downloaded the new ccminer code from github.
Installed latest CUDA 6.5
Install latest mpir 2.7 (alpha 10)
Deleted everything except compute_50 from Makefile.am

All very straightforward, and very fast compile.

First indications suggest about 5+% faster on X11 and X15 at least (750Ti)

Thanks djm34 for continued great work


I have CUDA 6.5 installed and mpir 2.7 alpha 10, what should I delete from Makefile.am ?

Here is what I get:
ptxas warning : 'option -abi=no' might get deprecated in future
ptxas info    : 0 bytes gmem, 16688 bytes cmem[3]
ptxas info    : Compiling entry function '_Z24whirlpool512_gpu_hash_64ijPmPj' for 'sm_35'
ptxas info    : Used 64 registers, 16384 bytes smem, 344 bytes cmem[0], 132 bytes lmem
ptxas info    : Compiling entry function '_Z24whirlpool512_gpu_hash_80ijPv' for 'sm_35'
ptxas info    : Used 64 registers, 16384 bytes smem, 336 bytes cmem[0], 4 bytes cmem[2], 120 bytes lmem
ptxas info    : Compiling entry function '_Z29whirlpool512_gpu_finalhash_64ijPmPjS0_' for 'sm_35'
ptxas info    : Used 64 registers, 16384 bytes smem, 352 bytes cmem[0], 672 bytes lmem
ptxas info    : Compiling entry function '_Z28m7_whirlpool512_gpu_hash_120ijPm' for 'sm_35'
ptxas info    : Used 64 registers, 16384 bytes smem, 336 bytes cmem[0], 852 bytes lmem
ptxas warning : 'option -abi=no' might get deprecated in future
ptxas info    : 0 bytes gmem, 16688 bytes cmem[3]
ptxas info    : Compiling entry function '_Z24whirlpool512_gpu_hash_64ijPmPj' for 'sm_50'
ptxas info    : Used 64 registers, 16384 bytes smem, 344 bytes cmem[0], 120 bytes lmem
ptxas info    : Compiling entry function '_Z24whirlpool512_gpu_hash_80ijPv' for 'sm_50'
ptxas info    : Used 64 registers, 16384 bytes smem, 336 bytes cmem[0], 4 bytes cmem[2], 12 bytes lmem
ptxas info    : Compiling entry function '_Z29whirlpool512_gpu_finalhash_64ijPmPjS0_' for 'sm_50'
ptxas info    : Used 64 registers, 16384 bytes smem, 352 bytes cmem[0], 348 bytes lmem
ptxas info    : Compiling entry function '_Z28m7_whirlpool512_gpu_hash_120ijPm' for 'sm_50'
ptxas info    : Used 64 registers, 16384 bytes smem, 336 bytes cmem[0], 384 bytes lmem
make[2]: Leaving directory `/home/ubuntu/ccminer'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/ubuntu/ccminer'
make: *** [all] Error 2
710  Alternate cryptocurrencies / Pools (Altcoins) / Re: Mining Pool Minergate [PPS 1.5%] [PPLNS 1%] BTC-LTC-BCN-XMR-QCN-FCN-XDN-MCN on: September 05, 2014, 02:24:32 AM
Monero is showing half of what it was showing 2 weeks ago.
Anything going on?  Seems to be a lot of rejects but just on this pool currently.
I'm doing merged mining with QuazarCoin, is that the issue?
711  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PXC] Phoenixcoin v0.6.6.0 ~ NeoScrypt on: August 24, 2014, 11:51:47 PM
Is the GPU miner available or still in testing?
712  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PXC] Phoenixcoin v0.6.6.0 ~ NeoScrypt on: August 23, 2014, 12:56:10 AM
Any US P2Pools ?
713  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.2 before block 2700 on: August 21, 2014, 10:28:04 PM
With the Pool method, if I have two computers, each computer has a 200GB HD available, would I need to make the plots different for each computer?
The same way that you don't want overlapping plots for two hard drives in one computer?  Or does it not apply when they are separate computers but same BURST address and passphrase.
714  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][APT] Aptcoin - Scrypt In-Motion(NM) | New ASIC Resistant Algorithm on: August 21, 2014, 02:07:00 AM
What is the current networkhashrate and difficulty looking like for today?
715  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient POC Mining | Update to 1.0.2 before block 2700 on: August 19, 2014, 09:33:09 PM
Too confusing for my setup currently it seems, as by using the same wallet address + not having my nonce all different on different systems I've effectively been mining with one 1TB HD instead of the 4+ that are now 100% full and have not hit a single block in over 5 days + issues from Java randomly rebuilding the plots and stressing the CPU and drives when there are better CPU coins available to mine with no effort.
I'll check back later when a better mining program is available or pools that can show my effective rate and coin income.
716  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient Proof of HDD Capacity Mining | No IPO, No Pre on: August 19, 2014, 09:10:01 AM
Is there a way to query balance and mining stats using CLI?
Linux Server doesn't have a GUI and Lynx doesn't seem to work with it.

Also I read that a different wallet address is needed for each external hard drive, is that true?
Or can the same wallet address be used?
What about copying this install to a laptop, and just adjusting the plot size for it, then running it, same wallet address etc.

maybe https://github.com/BurstProject/burstcoin/blob/master/src/java/nxt/http/APIServlet.java contains the commands you are looking for ...

you don't need to use differenet wallet addresses ... just ensure all you plot files are linked to your miner/plots folder ...



What command would be used on which jar?

with the wallet running:
wget -qO - http://localhost:8125/burst?requestType=getAccount&account=BURST-ADDR-GOES-HERE

I got my BURST address by loading the wallet on another computer with a GUI.
I still get:

:~$ wget -qO - http://localhost:8125/burst?requestType=getAccount&account=BURST-XXXX-myaddress
[1] 1399
:~$ {"errorCode":3,"errorDescription":"\"account\" not specified"}


I've got 4TB for 5 days now, and no blocks yet, so I must be doing something wrong I think Tongue
All the logs look good though.


New best: 99824251972402834:1524
Submitting share
{"result":"deadline: 6004593"}

717  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient Proof of HDD Capacity Mining | No IPO, No Pre on: August 16, 2014, 09:38:52 PM
Log in to the wallet (with a browser) with your passphrase and in the upper left you will find your "BURST" address.

Current issue is that wallet PC is Linux CLI, so trying to figure out all the commands that can be ran via CLI.
The wget method seems to work, I just can't find my BURST address which then opens up CLI working, a catch 22 I think haha.
718  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient Proof of HDD Capacity Mining | No IPO, No Pre on: August 16, 2014, 09:08:24 PM
Is there a way to query balance and mining stats using CLI?
Linux Server doesn't have a GUI and Lynx doesn't seem to work with it.

Also I read that a different wallet address is needed for each external hard drive, is that true?
Or can the same wallet address be used?
What about copying this install to a laptop, and just adjusting the plot size for it, then running it, same wallet address etc.

maybe https://github.com/BurstProject/burstcoin/blob/master/src/java/nxt/http/APIServlet.java contains the commands you are looking for ...

you don't need to use differenet wallet addresses ... just ensure all you plot files are linked to your miner/plots folder ...



What command would be used on which jar?

with the wallet running:
wget -qO - http://localhost:8125/burst?requestType=getAccount&account=BURST-ADDR-GOES-HERE

Thanks, I get:

[1] 5175
/pocminer_v1$ {"errorCode":3,"errorDescription":"\"account\" not specified"}
[1]+  Done                    wget -qO - http://localhost:8125/burst?requestType=getAccount



I've tried everything, always get:
pocminer_v1$ {"errorCode":3,"errorDescription":"\"account\" not specified"}

How do you get "BURST-ADDR-GOES-HERE"? I only see my password string and the converted output, which doesn't follow the public addresses I see on the forums such as BURST-CEJ9-9WFU-TCNN-XXXX
719  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient Proof of HDD Capacity Mining | No IPO, No Pre on: August 16, 2014, 09:05:14 AM
Is there a way to query balance and mining stats using CLI?
Linux Server doesn't have a GUI and Lynx doesn't seem to work with it.

Also I read that a different wallet address is needed for each external hard drive, is that true?
Or can the same wallet address be used?
What about copying this install to a laptop, and just adjusting the plot size for it, then running it, same wallet address etc.

maybe https://github.com/BurstProject/burstcoin/blob/master/src/java/nxt/http/APIServlet.java contains the commands you are looking for ...

you don't need to use differenet wallet addresses ... just ensure all you plot files are linked to your miner/plots folder ...



What command would be used on which jar?

with the wallet running:
wget -qO - http://localhost:8125/burst?requestType=getAccount&account=BURST-ADDR-GOES-HERE

Thanks, I get:

[1] 5175
/pocminer_v1$ {"errorCode":3,"errorDescription":"\"account\" not specified"}
[1]+  Done                    wget -qO - http://localhost:8125/burst?requestType=getAccount

720  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][BURST] Burst | Efficient Proof of HDD Capacity Mining | No IPO, No Pre on: August 16, 2014, 05:26:35 AM
Is there a way to query balance and mining stats using CLI?
Linux Server doesn't have a GUI and Lynx doesn't seem to work with it.

Also I read that a different wallet address is needed for each external hard drive, is that true?
Or can the same wallet address be used?
What about copying this install to a laptop, and just adjusting the plot size for it, then running it, same wallet address etc.

maybe https://github.com/BurstProject/burstcoin/blob/master/src/java/nxt/http/APIServlet.java contains the commands you are looking for ...

you don't need to use differenet wallet addresses ... just ensure all you plot files are linked to your miner/plots folder ...



What command would be used on which jar?
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 [36] 37 38 39 40 41 42 43 44 45 46 47 48 49 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!