Bitcoin Forum
June 22, 2024, 04:08:02 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Mining (Altcoins) / Re: Bitmain launches the Z9 Equihash miner on: May 08, 2018, 10:30:57 AM
If bitmain sell this device something must happen in equihash.

I agree. Why should they sell those ASICs, if they could keep on mining with all that hashing power instead?

I guess they have had some chat with some equihash devs and something will happen there. Maybe a fork for most important coins is comitted long ago without smaller miners knowing? Is zcash going to be new BTC (since ZEC is based on BTC) with the z-ability?

Really uncertain here, what exactly is happening, but I am sure several people behind the scenes know (prob. zokoo is one of them) and are acting a role.
2  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN][ICO] FINOM.IO (TabTrader, Nanopool) - TOKENIZED EQUITY OFFERING on: April 22, 2018, 08:23:47 AM
It seems as if their staff is completely ignoring this thread. Actually they send Update E-Mails from time to time and advertise Cloud mining within TabTrader (started @40% discount - now @30%).

I am a little scared, that finom is actually going to scam everyone, since they did a second ICO (after receiving $~40ish Millions?! in 1. ICO and they still advertise their cloud mining solution with an excessively discount (to catch ppl?)

Up to now, I am very uncertain if they actually do work on this good sounding finom project or if they just try to reach out for more money and then gtfo....  Huh
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] Bminer: a fast Equihash miner for CUDA GPUs (6.1.0) on: April 04, 2018, 05:56:53 PM
Can this coin be mined with Nvidia?
sure. title says "cuda gpus", which is nvidia.
4  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN][ICO] FINOM.IO (TabTrader, Nanopool) - TOKENIZED EQUITY OFFERING on: March 14, 2018, 04:54:42 PM
Is there any reason why tokens has not been distributed yet? I contributed in December and still waiting for you guys to sort problems which pops everyday?

Lastly I was told on your telegram that you lawyers are still working on the smart contract requirements....do I understand that there is no smart contract investors shares are tied to?

Thanks

Same question from me. I participated in the first ICO. It is said, that participants for that ICO will be able to claim FIN tokens as well as NOM tokens. How do we claim those and when will it be possible?

cheers
5  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: March 06, 2018, 09:19:44 PM
I have 6×1080 and 1× 1080 Ti in my mining rig.

I got recognized only 6×1080, the last 1080 Ti doesnt work.
Any ideas how to enable the 7th GPU??

Other miners works with 7 gpus.

Try updating your driver. I've read, that older nvidia-drivers didn't support the 1080 ti. Support started somewhere 384 or 387 I guess.
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 25, 2018, 03:27:13 PM
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed

Use this Miner Autorun (Watchdog)

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

Thank you for that recommendation. That looks fine, but requires to use windows. I am running a linux rig... :-/ Any other idea?

You can use this little python script that I made to handle the miner:

Code:
#!/usr/bin/env python3

import subprocess
import sys

def restart_miner(proc):
    print('Restarting miner...')
    proc.kill()

def process_line(proc, line):
    if 'cudaMemcpy 1 failed' in line:
        restart_miner(proc)
    else:
        print(line, end='')

if __name__ == '__main__':
    while True:
        proc = subprocess.Popen(sys.argv[1:], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
        for line in proc.stdout:
            process_line(proc, line.decode())

Copy/paste the code in a file, make it executable and run it with "./filename your_launch_command". With a file named "start.py" and for the default dstm's launch script the command would be "./start.py ./zm --cfg-file zm.cfg".

The script will restart the miner when it sees the "cudaMemcpy 1 failed" error message.

BTW, it should work on Windows too if you have python3 installed. Remove the first line and replace "sys.argv[1:]" by "['zm.exe', '--cfg-file', 'zm.cfg']" (or whatever your launch command is).


yaay! thank you very much! I will check out your script today. i was hoping for such a way! thank you pustul!!
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 22, 2018, 07:06:19 AM
Hey @dstm I just wanted to ask you how you are calculating when to submit devfee shares vs normal shares. I have been looking through my logs for the last 24 hours and No matter what block of time I look at the number of *s vs +s comes out to around 7-8% instead of the 2% that it should be. Am I missing something?

Here are the 2 commands I used to parse out the characters and then do the math with them.

Code:
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "*" | wc -l
357
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "+" | wc -l
4235

357/(357+4235)*100=7.8%

Thanks!

I searched my logfile with notepad and found thos numbers:
50 *
1530 +

= 50/1530 = 3,27%
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 22, 2018, 06:58:36 AM
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed

Use this Miner Autorun (Watchdog)

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

Thank you for that recommendation. That looks fine, but requires to use windows. I am running a linux rig... :-/ Any other idea?
9  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 21, 2018, 01:47:01 PM
Any way to restart the miner after GPU unresponsiveness?

Code:
2018-02-21 14:20:28|gpu_id 4 54 1 unspecified launch failure
2018-02-21 14:20:28|gpu 4 unresponsive - check overclocking
2018-02-21 14:20:28|cudaMemcpy 1 failed
10  Alternate cryptocurrencies / Mining (Altcoins) / Re: Ubuntu Nvidia Overclocking, Heat and Power Management: Definitive Guide on: February 20, 2018, 09:26:33 PM
Hey guys,

can anyone tell me, why I am not able to set individual fanspeeds on my ubuntu 7x 1060 rig?

Not working (any #):
Code:
rig1@rig1:~$ nvidia-settings -a [gpu:#]/GPUTargetFanSpeed=70
rig1@rig1:~$ nvidia-settings -a '[gpu:#]/GPUTargetFanSpeed=70'
rig1@rig1:~$ nvidia-settings -a "[gpu:#]/GPUTargetFanSpeed=70"


rig1@rig1:~$

Working:
Code:
rig1@rig1:~$ nvidia-settings -a GPUTargetFanSpeed=70

  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:0]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:1]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:2]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:3]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:4]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:5]) assigned value 70.
  Attribute 'GPUTargetFanSpeed' (rig1:0[fan:6]) assigned value 70.
rig1@rig1:~$


BTW: setting
Code:
nvidia-settings -a [gpu:1]/GPUFanControlState=1
works (for any #.....

best regards
11  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows) on: February 19, 2018, 08:58:57 AM
Where is the log file located?  I'm getting a crash 'cuda memory out of resources and fan's blowing like crazy all the sudden.  I just switched to 6.0,. then back to 5.8
All 6 1070's worked fine before.

Thanks in advance.

If you have not specified it will be in program directory" zm.log.
Running out of memory with ZM is really bad - equihash should not take more than 600MB on a card.

Same question here. I am using ubuntu 14.04 and therte is no zm.log within the zm folder (only zm.cfg).
12  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: 🔥🔥🔥🔥🔥[GUNBOT] Automatic Poloniex Profit Generator🔥🔥🔥🔥🔥 on: March 09, 2017, 09:02:34 PM
Hey Gunthar,

after reading this threat I PMed you and bought one item at bitify. Plz PM for further instructions. Smiley I am happily awaiting to try out Gunbot! Smiley

greetings
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!