Bitcoin Forum
May 26, 2024, 10:20:56 AM *
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 »
481  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: July 13, 2011, 12:10:41 AM
So now that you've got JSON implemented, I think I'll start work on some monitoring software based on clocktweak Smiley

I bashed something together for myself but it's very hackish, nothing trapped for or commented, messy code and bashed together in the quickest language I knew (Classic ASP).

It's up at http://codinginmysleep.com/miners/ for critique. Pretty basic interface, color-coded HUD at the top for each miner and the simple clocktweak -r -n output below. Not pretty but it functions. Would anyone be interested in something of this nature?
Pretty)
But u didn't need a json . I'am doing in such way:

Code:
echo off
SET Miner=Miner1
FOR /F "tokens=1,3,5 delims=:# " %%A IN ('c:\windows\clocktweak.exe -r ^| Find "Temp"') DO (
wget "http://myserver.com/bitgraph/collector.php?MinerName=%MINER%&Temp=%%B&CardId=%%A&Load=%%C"
)

It will do GET request for each gpu installed something like this:
Code:
http://myserver.com/bitgraph/collector.php?MinerName=Miner1&Temp=76&CardId=0&Load=98"
http://myserver.com/bitgraph/collector.php?MinerName=Miner1&Temp=73&CardId=3&Load=98"
482  Other / CPU/GPU Bitcoin mining hardware / Re: what is the ideal GPU temperature? on: July 12, 2011, 09:54:47 PM
There is nothing ideal in this world )))) I think 0 degree is might be ideal temperature for any gpu.  Grin

I trying to hold it between 70 and 75 deg cels.
483  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: July 12, 2011, 09:22:00 PM
Made a simple auto temperature control .bat script using ClockTweak tool http://forum.bitcoin.org/index.php?topic=28319.0

It can to control gpu core temperature by changing core speed depends on Minumum and Maximum margin values.

P.S. phelix, I made it my own way, so last features with errorlevel were not useful Smiley

P.P.S. phelix, don't you want to compile linux version of clocktweak?  Now it is more functional than other linux tools.
484  Other / CPU/GPU Bitcoin mining hardware / Auto temperature control .bat script using clocktweak tool on: July 12, 2011, 09:12:42 PM
Hi! I make this script for myself, but maybe if will be useful to smb else.
It's very simple, but it can to control gpu core temperature by changing core speed depends on Minumum and Maximum margin values.
You can customize it to fit your needs
You need clocktweak tool to make it work http://forum.bitcoin.org/index.php?topic=9982.0

Here is the source code:

main script clock_adj.bat:  http://ge.tt/91RUcA6 or http://uploadbox.com/files/4c7516d82e/
Code:
echo off

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Setting up base params ::
:: DeltaClock - Value that will be added or subtracted
:: MaxTemp - Maximum Core Temperature. If it exceeded, DeltaClock subtractin is occurs
:: MinTemp - Minimum Core Temperature. If temperature will be less than this value, DeltaClock is added to core clock
:: MaxClock - Maximum Core Clock value. Core clock will never exceeds this value
:: MinClock - Minimum Core Clock value. Core clock can't be less than this value
:: ShutDownTemp - Alarm Temperature.  If it exceeded, ShutDown Actions are occurs
:: IdleValue - Idle Margin. If gpu load less than this value, no actions taken
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

SET DeltaClock=10
SET MaxTemp=77
SET MinTemp=75

SET MaxClock=960
SET MinClock=800

SET ShutDownTemp=95
SET IdleValue=50

:::::::::::::::::::::::::::::::::::::::::::::::
:: Repeat this action for each gpu installed ::
:::::::::::::::::::::::::::::::::::::::::::::::

FOR /F "tokens=1,3,5,7,9 delims=:# " %%A IN ('clocktweak.exe -r ^| Find "Temp"') DO (
echo "CardNo - %%A; Clock -  %%E; Temp -  %%B; Load -  %%C%%;"

:: If current gpu temp (%%B) greater than ShutDownTemp do ShutDown Actions ::
  if %%B GTR %ShutDownTemp% call:ShutDown %%A %%E %%B %%C

:: If current gpu temp (%%B) greater than MaxTemp do DownClock Actions ::
  if %%B GTR %MaxTemp% call:DownClock %%A %%E %%B %%C

:: If current gpu temp (%%B) less than MinTemp do UpClock Actions ::
  if %%B LSS %MinTemp% call:UpClock %%A %%E %%B %%C
)

goto:eof

:::::::::::::::::::::::::::::
:: Down Core Clock Actions ::
:::::::::::::::::::::::::::::
:DownClock
:: If gpu is idle do noting ::
if %~4 LSS %IdleValue% ( echo Card %~1 is idle! Load -  %~4; && goto:eof)

:: This speeds up a little clock Decreasing ::
set /A DeltaTempSpeed=%~3-%MinTemp%

:: Calculating new gpu clock ::
set /A NewTemp=%~2-DeltaClock-DeltaTempSpeed

:: Clock already has it's minimum value, exiting ::
if %~2 EQU %MinClock% goto:eof

:: Clock already has less than min value, so setting it to MinClock ::
if %NewTemp% LSS %MinClock% SET NewTemp=%MinClock%

echo. Decreasing clock, new value %NewTemp%; Card %~1; Old Clock %~2; Temp %~3;

:: If you didn't need a log, comment line below
echo. Decreasing clock, new value %NewTemp%; Card %~1; Old Clock %~2; Temp %~3; >> log.txt

:: Setting up new gpu clock and rotating fan to 99% (-s 99) ::
clocktweak.exe -c %NewTemp% -s 99 -y -a %~1 > nul
goto:eof

:::::::::::::::::::::::::::
:: Up Core Clock Actions ::
:::::::::::::::::::::::::::
:UpClock

:: If gpu is idle do noting ::
if %~4 LSS %IdleValue% ( echo Card %~1 is idle! Load -  %~4; && goto:eof)

:: This speeds up a little clock Increasing ::
set /A DeltaTempSpeed=%MaxTemp%-%~3

:: Calculating new gpu clock ::
set /A NewTemp=%~2+DeltaClock+DeltaTempSpeed

:: Temperature already has it's maximum value, exiting ::
if %~2 EQU %MaxClock% goto:eof

:: Clock already has more than max value, so setting it to MaxClock ::
if %NewTemp% GTR %MaxClock% SET NewTemp=%MaxClock%

echo. Increasing clock, new value %NewTemp%; Card %~1; Old Clock %~2; Temp %~3;

::If you didn't  need a log, comment line below
echo. Increasing clock, new value %NewTemp%; Card %~1; Old Clock %~2; Temp %~3; >> log.txt

:: Setting up new gpu clock and setting up fan to auto mode (-s auto)::
clocktweak.exe -c %NewTemp% -s auto -y -a %~1 > nul
goto:eof

::::::::::::::::::::::
:: ShutDown Actions ::
::::::::::::::::::::::
:ShutDown
echo Shutting down with Card %~1; Old Clock %~2; Temp %~3;
shutdown.exe -r -f -t 300 /c "I am overheating! So shutting down. Card %~1; Last Clock %~2; Last Temp %~3; Last load %~4; . "
goto:eof
This needs to be launched through certain period f.e. 1 minute or more. Use standard schedule or script listed below (cron.bat)

cron.bat http://ge.tt/8JGacA6 or http://uploadbox.com/files/751265b61b/
Code:
:10
call clock_adj.bat
timeout 60
goto 10
60 - seconds to repeat

Params are simple:
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: DeltaClock - Value, that will be added or subtracted from current gpu core clock
:: MaxTemp - Maximum Core Temperature. If it exceeded, DeltaClock subtractin is occurs
:: MinTemp - Minimum Core Temperature. If temperature will be less than this value, DeltaClock is added to core clock
:: MaxClock - Maximum Core Clock value. Core clock will never exceeds this value
:: MinClock - Minimum Core Clock value. Core clock can't be less than this value
:: ShutDownTemp - Alarm Temperature.  If it exceeded, ShutDown Actions are occurs
:: IdleValue - Idle Margin. If gpu load less than this value, no actions taken
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

How does it work's ?
clock_adj.bat being launched checking current gpu core temperature , if it above MaxTemp script decrease core clock on  DeltaClock value, if below MinTemp it will increased.
If gpu core temperature is above ShutDownTemp Shut Down actions are fired.  This ShutDown Actions now  can only to shut down workstation, but you can teach it to send sms, using services like yakoon

just add line below to your Shut Down Actions
Code:
wget http://sms.yakoon.com/sms.asmx/Send?Username=YourYakoonUsername&Password=YourYakoonPassword&Sender=YourYakoonSender&Recipient=YourYakoonRecipient&Co
(you will ned a wget tool ( http://www.gnu.org/s/wget/ ) and yakoon account (http://yakoon.com/?Affiliate=Lexiko)

will be sms like this:

Code:
....
::::::::::::::::::::::
:: ShutDown Actions ::
::::::::::::::::::::::
:ShutDown
echo Shutting down with Card %~1; Old Clock %~2; Temp %~3;

:: Sending sos sms ::
wget http://sms.yakoon.com/sms.asmx/Send?Username=YourYakoonUsername&Password=YourYakoonPassword&Sender=YourYakoonSender&Recipient=YourYakoonRecipient&Co
shutdown.exe -r -f -t 300 /c "I am overheating! So shutting down. Card %~1; Last Clock %~2; Last Temp %~3; Last load %~4; . "
goto:eof

Suggestions and additions are welcome
If you like it you can donate here 1VCtYerBMGiRcGMnqdr4mZnT59Ba4L3xg , it will stimulate me to further develop.
Have a nice day! Smiley
485  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: July 07, 2011, 11:48:21 PM
truvativ, I think it's not a clocktweak problem , and even not a windows 2008 problem. mb your card clocks are bios locked . Try to use any other clock tweaker f.e. saphiretrixx or msiafterburn (with overcloking options), if they won't work, you will need to  flash your card bios (only do it if u know what a u doing).
486  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: July 06, 2011, 04:45:40 PM
truvativ, clocktweak work's great on my Windows Server 2008 R2 x64 (5770x2 cards).
It something with your settings or card drivers.
487  Local / Хайпы / Re: [пирамида] X1.5 [Завершена!] on: July 06, 2011, 04:26:22 PM
Потдверждаю, возврат получил.
488  Local / Хайпы / Re: [пирамида] X1.5 (новая) on: July 05, 2011, 12:38:03 PM
Отправил 1 бтц Smiley
489  Local / Обменники / Re: В чем проблема сделать авто-обменник? on: July 04, 2011, 06:43:09 PM
У игровой валюты есть один ньюанс - её можно легко купить, но нельзя так же легко продать. Игровая валюта превращается из платежного инструмента в товар.

Как вы себе трактуете статус биткоинов - это ваше дело. Но удьте уверены, что Арбитраж очень оперативно внесет биткоины в список запрещенных, если до этого дойдет.
С игровыми валютами не все так просто. WM недавно запретила прием пожертвований для пиратских серверов, так что большинство вне закона.

Но тут есть одна хитрость, можно работать через посредников. Например через ту же Робокассу http://robokassa.ru/ru/ . С ними намного проще договорится, хотя и своих тараканов хватает. Но большой + в том, что можно принимать огромное количество валюты.
Один перевод из мобильного МТС-а через смс под 2% чего стоит.
Биллинг сделать проще простого, нужен всего персональный лишь сертификат вм.

Другой вопрос, что сейчас актуальнее: ввод или вывод BTC ?
Был бы интересен сервис ввода бтц из разных источников?

Кстати, для тех же пиратских серверов онлайн игр вопрос о приеме пожертвования с каждым днем обостряется.
Причем пожертвования через BTC очень неплохо бы туда вписался.
490  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: July 01, 2011, 02:42:35 PM
What about automatic core clock control ?
For example I setting up max and min core temperatures, and clocktweak keeps core clock in this margins.
This no need drivers, services, just simple schedule cron task .

Something like this will be added to every minute windows cron task:
coreclock -c auto -tmin 70 -tmax 80 -tstep 10 -m 300 -temerg 100 -emergtask "taskkill phoenix.exe"

After task run it will check is the temperature below -tmin (70), if yes, then it will increase core clock on -tstep (10) , if temp above -tmax (80) then it will decrease clock.

Also it can be emergency mode, f.e. if temp above -temerg (100) cels, is will runs -emergtask (can finish miners/shutdown, send sms/email/tweet/jabber/icq ...).

P.S.
I make simple XML output with .bat script. You can easy convert it into json format.
Code:
echo off
echo ^<xml^> > outfile.xml
FOR /F "tokens=1,3,5 delims=:# " %%A IN ('clocktweak.exe -r ^| Find "Temp"') DO (
echo   ^<card^> >> outfile.xml
echo      ^<cardid^>%%A^</card^> >> outfile.xml
echo      ^<temp^>%%B^</temp^> >> outfile.xml
echo      ^<load^>%%C^</load^> >> outfile.xml
echo   ^</cardid^> >> outfile.xml
)
echo ^</xml^> >> outfile.xml



output will be correct xml code:
Code:
<xml>
  <card>
     <cardid>0</cardid>
     <temp>63</temp>
     <load>98</load>
  </card>
  <card>
     <cardid>3</cardid>
     <temp>75</temp>
     <load>98</load>
  </card>
</xml>
you can save it into file by adding ">> outfile.xml"  in the end after every echo line
491  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: June 30, 2011, 12:28:56 PM
Thinking of doing something bigger with this and while I'm certainly competent enough to parse your output I have to ask anyway... Any chance you could add another flag to give the -r output in JSON?
+1
I also support this idea.

Json or xml format output will be great !
492  Local / Майнеры / Re: Чем снизить частоту памяти второй видеокk on: June 02, 2011, 10:35:46 AM
Вопрос решен , использовал ClockTweak http://forum.bitcoin.org/index.php?topic=9982.0 работает отлично.
А вот автерберн тупит часто и на некоторых картах даже с разлоченными настройками не дает опускать меньше 600 мгц, потому отказался от него.
493  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: June 02, 2011, 10:31:47 AM
Memory underclock to 300 mhz works great on my 5850, 6850 and 5770 (Asus, Gigabyte , Saphire, His) under Windows 7 x64 Professional/Home, Server 2008 x64, Windows XP x32 OSes.

Thx a lot, wait for more donate Wink and wish you luck in the further development.
494  Other / CPU/GPU Bitcoin mining hardware / Re: How to use GUI mining in Windows Server 2008 X64 on: June 02, 2011, 01:23:36 AM
Dell R710
Xeon E5645. 2core 24logic core.
It's a very fast CPU than ordinary PC
Now there is no reason to mine using cpu. You need gpu to mine some btc.
495  Other / CPU/GPU Bitcoin mining hardware / Re: = ClockTweak = win32 command line clock/voltage tweaking tool on: June 02, 2011, 01:08:01 AM
Can I use one copy of ClockTweak on all my desktops?
496  Other / CPU/GPU Bitcoin mining hardware / Re: How to use GUI mining in Windows Server 2008 X64 on: June 02, 2011, 12:56:26 AM
thanks everyone.
I tried to use minerd.exe and it works! problem solved! lol

the speed is around  28MHash/s
Is it fast or slow ? compared to GPU mining?
It's very slow. What is your hardware? Did you have a video card?
497  Other / CPU/GPU Bitcoin mining hardware / Re: How to use GUI mining in Windows Server 2008 X64 on: June 01, 2011, 05:15:06 PM
you can't install generic ati drivers on that OS, look out for Dell support ...
false! Generic ati drivers works fine on my Windows server 2008 R2 x64. I used  standard windows 7 x64 driver with OpenGL support , it work's great!

galex , try to install OpenGl driver from c:\ATI folder (file OpenCL.msi) . Or download it from the ati site.
498  Local / Майнеры / Re: Чем снизить частоту памяти второй видеокk on: June 01, 2011, 11:53:33 AM
Поставил такие параметры:
[ATIADLHAL]
UnofficialOverclockingEULA      = 1
UnofficialOverclockingMode      = 1
AccessibilityCheckingPeriod     = 0

на 2-х конфигах заработало, на 2-х нет. Настройки одинаковые.
499  Other / CPU/GPU Bitcoin mining hardware / Re: How to use GUI mining in Windows Server 2008 X64 on: June 01, 2011, 11:52:05 AM
Did you checked OpenCl is turned on? Are ATI drivers ok?

Where an error is occurs?
500  Other / CPU/GPU Bitcoin mining hardware / Re: How to use GUI mining in Windows Server 2008 X64 on: June 01, 2011, 01:35:24 AM
The guiminer-20110521 can not run on this OS.
the error msg is someting wrong with concurrency setting and suggest to use tool sxstrace.exe

anyone know how to fix this issue?
guiminer-20110521 work's great on this OS. Try to install it (not snaphot). Also try to disable DEP, mb this will help.

P.S. Did u installed all ati drivers, including OpenCL? Try to run Gpu-z utility, see is OpenCL checkbox checked.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!