Hello all! Trying to add Wisdom to my new Raspberry Pi 2. I'm new too Linux/Debian/Whezzy and RSP2. I tried the copy and paste to add but i can't locate the proper spot using the terminal. I have the file as wisdom.nb but not sure if that's right. Help would be most appreciated!
The following will open an editor that most find easy to use and create the wisdomf file in the correct spot. You will see how to save and exit the editor.
First we need to create the directory for the wisdomf file.
sudo mkdir /etc/fftw
Now create the file. Copy and paste the contents from below into the editor.
I may have messed it up and not working properly. the time is almost 4 hours at 16%. Where it was before. I followed this post to get Boinc past the 7.0.xx version. Boinc says it's version 7.7.0! Is this bad and why the wisdomf not working?
I may have messed it up and not working properly. the time is almost 4 hours at 16%. Where it was before. I followed this post to get Boinc past the 7.0.xx version. Boinc says it's version 7.7.0! Is this bad and why the wisdomf not working?
This is way too slow for a Raspi 2, even w/o using a wisdom file.
While E@H jobs are running, you can use the following command to measure
temperature:
/opt/vc/bin/vcgencmd measure_temp
and CPU clock freq:
/opt/vc/bin/vcgencmd measure_clock arm
The CPU clock freq. should always be at 900MHz (or 1GHz when overclocking) , temperature should stay below 80 deg C .
I'm glad you agree that was too slow. i left it alone for a day to see anything change. It did...time has been 22 hours. I checked Clock Arm measurement and it stays at 600mhz...even when they are at 100%. I overclocked using sudo raspi-config but still 600mhz.
I'm glad you agree that was too slow. i left it alone for a day to see anything change. It did...time has been 22 hours. I checked Clock Arm measurement and it stays at 600mhz...even when they are at 100%. I overclocked using sudo raspi-config but still 600mhz.
Ok, that explains the under-performance.
I can think of two reasons for the low clock rate from the top of my head:
a) overheating. What is the CPU temperature while running BOINC?
b) the power-saving configuration is set to dynamically adjust the clock but is also configured to not take "nice" jobs (jobs at a low priority) into account.
BTW which OS are you using?
Let us know what the following commands return on your Raspi:
Found a nice command for
)
Found a nice command for getting temps and other settings and readings:
/opt/vc/bin/vcgencmd measure_temp
To list other otions.vcgencmd commands
Is installed by default with Raspian.
http://elinux.org/RPI_vcgencmd_usage
Hello all! Trying to add
)
Hello all! Trying to add Wisdom to my new Raspberry Pi 2. I'm new too Linux/Debian/Whezzy and RSP2. I tried the copy and paste to add but i can't locate the proper spot using the terminal. I have the file as wisdom.nb but not sure if that's right. Help would be most appreciated!
Hi Jon The following will
)
Hi Jon
The following will open an editor that most find easy to use and create the wisdomf file in the correct spot. You will see how to save and exit the editor.
First we need to create the directory for the wisdomf file.
sudo mkdir /etc/fftw
Now create the file. Copy and paste the contents from below into the editor.
sudo nano /etc/fftw/wisdomf
CONTROL + o to save. CONTROL + x to Exit
Hope this helps.
Cheers!
that did it! Thank you!
)
that did it! Thank you! restarting and i'll keep an eye on the times.
Would this make the file
)
Would this make the file readable by Boinc ?
sudo chmod 755 wisdomf.save
It just needs to be world
)
It just needs to be world readable.
There is no extension to the file name. Just
I may have messed it up and
)
I may have messed it up and not working properly. the time is almost 4 hours at 16%. Where it was before. I followed this post to get Boinc past the 7.0.xx version. Boinc says it's version 7.7.0! Is this bad and why the wisdomf not working?
RE: I may have messed it up
)
This is way too slow for a Raspi 2, even w/o using a wisdom file.
While E@H jobs are running, you can use the following command to measure
temperature:
/opt/vc/bin/vcgencmd measure_temp
and CPU clock freq:
/opt/vc/bin/vcgencmd measure_clock arm
The CPU clock freq. should always be at 900MHz (or 1GHz when overclocking) , temperature should stay below 80 deg C .
Cheers
HB
I'm glad you agree that was
)
I'm glad you agree that was too slow. i left it alone for a day to see anything change. It did...time has been 22 hours. I checked Clock Arm measurement and it stays at 600mhz...even when they are at 100%. I overclocked using sudo raspi-config but still 600mhz.
RE: I'm glad you agree that
)
Ok, that explains the under-performance.
I can think of two reasons for the low clock rate from the top of my head:
a) overheating. What is the CPU temperature while running BOINC?
b) the power-saving configuration is set to dynamically adjust the clock but is also configured to not take "nice" jobs (jobs at a low priority) into account.
BTW which OS are you using?
Let us know what the following commands return on your Raspi:
(in brackets: on my Raspi2 undert full load)
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
[ondemand]
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
[1000000]
cat /sys/devices/system/cpu/cpufreq/ondemand/ignore_nice_load
[0]
You can always force the highest available clock rate by including a line
force_turbo=1
in /boot/config.txt (use sudo nano /boot/config.txt to edit)
BUT THIS MIGHT VOID WARRANTY (which is recorded by permanently flipping a certain bit in the CPU ), at least it was this way in the days of Raspi 1: https://www.raspberrypi.org/forums/viewtopic.php?p=176865#p176865
Cheers
HB