Bitcoin Forum
May 22, 2024, 02:34:54 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Avalon 8 frequency manually adjust problem  (Read 188 times)
enforcerz (OP)
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 09, 2020, 10:01:57 AM
 #1

Hi, I've tried to use --avalon8-freq command with no success.
I want to tune my avalon 851 and 852 for running between low-power and balance mode.
My target is to run at 11.5Th/s / 1200W / fairly quiet @ 4200RPM / >= 95C chip temp
I've try both --avalon8-freq 625 and --avalon8-freq 600-650
The miner not hashing at all.
Thanks.
philipma1957
Legendary
*
Offline Offline

Activity: 4130
Merit: 7907


'The right to privacy matters'


View Profile WWW
February 09, 2020, 03:14:23 PM
 #2

Hi, I've tried to use --avalon8-freq command with no success.
I want to tune my avalon 851 and 852 for running between low-power and balance mode.
My target is to run at 11.5Th/s / 1200W / fairly quiet @ 4200RPM / >= 95C chip temp
I've try both --avalon8-freq 625 and --avalon8-freq 600-650
The miner not hashing at all.
Thanks.

I was never able to adjust the 851 or 852 miners  with any good success.  In fact  the last really good avalon for adjusting were my 841's.

Good luck trying with yours. Maybe you can succeed.

▄▄███████▄▄
▄██████████████▄
▄██████████████████▄
▄████▀▀▀▀███▀▀▀▀█████▄
▄█████████████▄█▀████▄
███████████▄███████████
██████████▄█▀███████████
██████████▀████████████
▀█████▄█▀█████████████▀
▀████▄▄▄▄███▄▄▄▄████▀
▀██████████████████▀
▀███████████████▀
▀▀███████▀▀
.
 MΞTAWIN  THE FIRST WEB3 CASINO   
.
.. PLAY NOW ..
PassThePopcorn
Sr. Member
****
Offline Offline

Activity: 465
Merit: 309


View Profile
February 10, 2020, 09:03:37 PM
Last edit: February 11, 2020, 12:14:25 AM by frodocooper
 #3

Syntax error, take a look at the documentation for the driver and what the command you are inputting are.
enforcerz (OP)
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
February 21, 2020, 12:36:30 AM
Last edit: February 21, 2020, 10:52:51 AM by frodocooper
 #4

Syntax error, take a look at the documentation for the driver and what the command you are inputting are.

Code:
--avalon8-freq      Set Avalon8 default frequency, range:[25, 1200], step: 25, example: 800
--avalon8-freq-sel <arg> Set Avalon8 default frequency select, range:[0, 3], step: 1, example: 3 (default: 3)

Code:
char *set_avalon8_freq(char *arg)
{
int val[AVA8_DEFAULT_PLL_CNT];
char *colon, *data;
int i;

if (!(*arg))
return NULL;

data = arg;
memset(val, 0, sizeof(val));

for (i = 0; i < AVA8_DEFAULT_PLL_CNT; i++) {
colon = strchr(data, ':');
if (colon)
*(colon++) = '\0';
else {
/* last value */
if (*data) {
val[i] = atoi(data);
if (val[i] > AVA8_DEFAULT_FREQUENCY_MAX)
return "Invalid value passed to avalon8-freq";
}
break;
}

if (*data) {
val[i] = atoi(data);
if (val[i] > AVA8_DEFAULT_FREQUENCY_MAX)
return "Invalid value passed to avalon8-freq";
}
data = colon;
}

for (i = 0; i < AVA8_DEFAULT_PLL_CNT; i++)
opt_avalon8_freq[i] = val[i];

return NULL;
}

I'm so confused, can you give me some clue? Thank you.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!