Jump to content

Howto: Ubunbtu 18 Folding Rig

Updated Instructions for Ubuntu 22.04:

 

Why Linux:

  • It will run well on older hardware that can be re purposed for a dedicated folding machine.
  • You can disable automatic updates.
  • It will perform 5-10% better than Windows due to Driver and OpenMM Core 21 issues in Windows.
  • I have found it to be more stable than Windows with months of up-time. YMMV

Why Ubuntu:

Prerequisites:

  • Pretty much any 2GHz or faster processor with a minimum of 2-3GB DDR3 and a PCIe 2 x16 slot should work.
  • If your not running DHCP on your router you’ll need an available IP Address, and to note your Subnet Mask and Gateway Address.
  • NVidia GTX or RTX GPU (AMD GPUs are NOT covered here yet, but if anyone wants to contribute please do so)

OS Install (Ubuntu Desktop 18.04.3):

This is the LTS Desktop version. More adventurous types may want to consider installing the LTS Server version for a less cluttered install. There are several other guides on how to setup a Linux Folding Rig (see the Reference Section at the end)

 

      Note: Ubuntu 19 has removed support for Python2 so FAHControl will not work

  1. Download Ubuntu 18.04.3 LTS Desktop ISO File
  2. Burn the ISO to a USB key using Rufus or similar tool
  3. Boot from the USB key and start the install
  4. For US English just accept the defaults
  5. Partition the whole disk as a single “Root” partition, don’t bother creating a separate swap partition.
  6. use the default Gnome Desktop (GDM3) for now, it can be changed later.

OS Configuration:

Spoiler
  • Add a Shortcut to Terminal:
  1. Click on the "Show Applications" Icon in lower Left Desktop
  2. Type "Terminal" in the Search Box to show the Terminal Application
  3. Right-Click on the Terminal Application and select "Add to Favorites" to add it to the Desktop.
  • (Optional) Add OpenSSH Server package for remote access to CLI. Open a Terminal Window and type:
sudo apt install openssh-server
  • Add lm-sensors (Hardware Monitoring) package (Run "sensors-detect" to configure and "sensors" to view hardware sensors)
sudo apt install lm-sensors
sudo sensors-detect
sensors
  • Add psensor Application to monitor sensors from GUI
  • sudo apt install psensor

     

Graphics Drivers:

Spoiler
  • Add the PPA Graphics Drivers Archive (Repository)
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get install dkms build-essential
sudo apt-get update
sudo apt list nvidia-driver* (and pick the newest version to install)
  • Install the most current GPU Driver (v430 at the time of writing)
sudo apt install nvidia-driver-430

 

OpenCL:

Spoiler

Install CLinfo and run it to ensure that the OpenCL Drivers are installed

sudo apt install clinfo
clinfo

Install the OpenCL Development Package anyway:

sudo apt install ocl-icd-opencl-dev

and restart the computer

sudo shutdown -r now

Folding Client:

Spoiler

 

Install the OpenCL Drivers

sudo apt install ocl-icd-opencl-dev

Copy the Most recent Debian Package from foldingathome.org

wget https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/v7.5/fahclient_7.5.1_amd64.deb

Install the Package as a Service (Daemon)

sudo dpkg -i fahclient_7.5.1_amd64.deb

Specifying your Folding username, Team ID (223518), Passkey and specifying "Full Power" for folding


Add the latest GPU Whitelist:

sudo wget http://fah-web.stanford.edu/file-releases/public/GPUs.txt -P /var/lib/fahclient/

Optional - Install FAHControl

To install the Folding at Home Control application locally on the system requires a bit of work as this application is written using Python 2 and Ubuntu only comes with Python version 3 installed. Install Python version 2 and some compatibility packages:

sudo apt install python dh-python python-gnome2
  • Install the FAHControl application:
wget https://download.foldingathome.org/releases/public/release/fahcontrol/debian-stable-64bit/v7.5/fahcontrol_7.5.1-1_all.deb
sudo dpkg -i fahcontrol_7.5.1-1_all.deb
  • Create a Desktop Favorite for FAHControl:
  1. Click on the "Show Applications" Icon in lower Left Desktop
  2. Type "FAHControl" in the Search Box to show the Folding@Home Control Application
  3. Right-Click on the Terminal Application and select "Add to Favorites" to add it to the Desktop.

 Configure Folding Client:

  1. Configure GPU and, optionally, CPU Slots
  2.  Configure Advanced Options (Beta Flag, Pause on Start, ...)

Configuring X-Windows and GPU:

Spoiler
  • CoolBits. CoolBits are binary flags used by the NVidia GPU driver to enable some normally locked functionality. For Folding the bits we typically use are Bit 2 (4), which enables manual fan control and Bit 3 (8), which enables GPU Shader and Memory overclocking. There are multiple ways to set CoolBits but by far the easiest is:
sudo nano /usr/share/X11/xorg.conf.d/10-nvidia.conf
	adding: Option "Coolbits" "12"
(Press <Ctrl>+X to exit the editor saving the file)
The setting will take effect after the next time the system is restarted.

but this will only work for one GPU in a system. For multiple GPUs just use the following to create a xorg.conf file with CoolBits enabled"

sudo nvidia-xconfig -a --cool-bits=12 --allow-empty-initial-configuration
  • nvidia-settings is the the utility provided with the Nvidia driver package to control the GPU. Once Coolbits is enabled it can be run from Xwindows to manually control the fan and/or apply GPU and Memory overclocks. There is also a command-line version (see Advanced Section)
  • nvidia-smi is the Nvidia Systems Management Interface (See References) used to query or program the GPU. See the references section below. The most common use is to set a higher or lower power limit for the GPU:
sudo nvidia-smi -i 0 -pm 1; nvidia-smi -i 0 -pl 150

this first sets "Persistent Mode" enabling changes to the power level to persist after the current job is terminated and, next, sets the power level for GPU 0 to 150W (entering an unrealistic value here will throw a helpful error detailing the valid range of values for the referenced GPU)

  • startup script The above settings, once "seasoned to taste" can be stored in the Desktop Startup Script and thus be run at startup.

System Administration 101:

The Terminal is your Best Friend

  • Starting, Stopping and Restarting Services
Spoiler
sudo service FAHClient start		
sudo service FAHClient stop		
sudo service FAHClient restart

 

  • Package Updates (Aptitude, dpkg, apt ...)
  • Monitoring System Health (htop, ps, sensors, ...)
  • Monitoring GPU Performance (nvidia-settings, nvidia-smi)
  • Monitoring Folding Performance (FAHclient)

Advanced Topics:

Multiple GPUs

In most standard mid and full-tower ATX cases with dual-fan cards the lower card will cook the upper card. I usually install the higher performing card in the lower slot so it is not breathing the hot air from the adjacent card. I have noticed that running the fans on the lower card about 10% above the stock value will result in the upper card getting cooler air and running at a lower temperature and boosting higher.

Remote Management via CLI

Use your favorite SSH application to access the folding machine. I use PuTTY.

Remote Folding Client Control

Spoiler

 

See:

 

Headless Operation

Spoiler

In order to run headless (without a display attached to the system) you will need to either install HDMI or DVI "Dummy Plugs" to spoof a display or trick nvidia-settings utility so you can apply an overclock or manually control the fans on a GPU. The trickery involves running:

user@kvm1:~# sudo ps -ef | grep auth
root      1772  1769  0 Sep16 tty1     00:00:14 /usr/lib/xorg/Xorg vt1 -displayfd 3 -auth /run/user/131/gdm/Xauthority -background none -noreset -keeptty -verbose 3

to find the location of the X Authority file then explicitly point to this file when invoking nvidia-smi from the Command-Line Interface (CLI):

sudo DISPLAY=:0 XAUTHORITY=/run/user/131/gdm/Xauthority nvidia-settings -a /GPUFanControlState=1 -a [fan:0]/GPUTargetFanSpeed=80

Here we are changing the Fan Control to Manual and then setting the first Fan to 80%

To monitor a GPU in a separate SSH session type:

gordonb@kvm1:~$ nvidia-smi -i 0 -l 1 --format=csv,noheader --query-gpu=temperature.gpu,power.draw,clocks.current.sm,fan.speed		
63, 89.82 W, 2025 MHz, 80 %
63, 89.47 W, 2025 MHz, 80 %
63, 93.58 W, 2025 MHz, 81 %
63, 93.72 W, 2025 MHz, 81 %
63, 97.35 W, 2025 MHz, 80 %
63, 89.27 W, 2025 MHz, 81 %
63, 93.68 W, 2025 MHz, 81 %
...

which displays the GPU Temperature, Power Draw, Shader Clock and, fan speed, on one line once a second.

 

Running BOINC and FaH

Dual-Booting Linux & Windows (Install Windows 1st; Disable Fast Boot; Shrink Partition; Install Linux in free space)

References:

Build Guides:

Folding Client Install:

Proprietary GPU Drivers:

NVidia Graphics Drivers:

Ubuntu Documentation

Hardware Monitoring:

IT87 Kernel Module (All Gigabyte, and some Asus, Motherboards):

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

  • 2 weeks later...

Is there a way I could get this to work on Manjaro? My CPU works fine but my GPU is stuck at "ready" (and no, nothing is paused or whatever).

Quote me to see my reply!

SPECS:

CPU: Ryzen 7 3700X Motherboard: MSI B450-A Pro Max RAM: 32GB I forget GPU: MSI Vega 56 Storage: 256GB NVMe boot, 512GB Samsung 850 Pro, 1TB WD Blue SSD, 1TB WD Blue HDD PSU: Inwin P85 850w Case: Fractal Design Define C Cooling: Stock for CPU, be quiet! case fans, Morpheus Vega w/ be quiet! Pure Wings 2 for GPU Monitor: 3x Thinkvision P24Q on a Steelcase Eyesite triple monitor stand Mouse: Logitech MX Master 3 Keyboard: Focus FK-9000 (heavily modded) Mousepad: Aliexpress cat special Headphones:  Sennheiser HD598SE and Sony Linkbuds

 

🏳️‍🌈

Link to comment
Share on other sites

Link to post
Share on other sites

On 8/16/2019 at 10:50 AM, kelvinhall05 said:

Is there a way I could get this to work on Manjaro? My CPU works fine but my GPU is stuck at "ready" (and no, nothing is paused or whatever).

Hmm. Stuck at Ready can sometimes be fixed by a reboot or uninstalling the package, rebooting and reinstalling the packake. Can you post the errors in the log file?

 

it might be you need to update or add OpenCL

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

13 minutes ago, Gorgon said:

Hmm. Stuck at Ready can sometimes be fixed by a reboot or uninstalling the package, rebooting and reinstalling the packake. Can you post the errors in the log file?

 

it might be you need to update or add OpenCL

How would I check for errors? Can I just copy-paste log file?

Quote me to see my reply!

SPECS:

CPU: Ryzen 7 3700X Motherboard: MSI B450-A Pro Max RAM: 32GB I forget GPU: MSI Vega 56 Storage: 256GB NVMe boot, 512GB Samsung 850 Pro, 1TB WD Blue SSD, 1TB WD Blue HDD PSU: Inwin P85 850w Case: Fractal Design Define C Cooling: Stock for CPU, be quiet! case fans, Morpheus Vega w/ be quiet! Pure Wings 2 for GPU Monitor: 3x Thinkvision P24Q on a Steelcase Eyesite triple monitor stand Mouse: Logitech MX Master 3 Keyboard: Focus FK-9000 (heavily modded) Mousepad: Aliexpress cat special Headphones:  Sennheiser HD598SE and Sony Linkbuds

 

🏳️‍🌈

Link to comment
Share on other sites

Link to post
Share on other sites

16 minutes ago, kelvinhall05 said:

How would I check for errors? Can I just copy-paste log file?

Usually just paste the log file into a code block or a spoiler

 

The log in the FAHcontrol should show errors

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

On 8/17/2019 at 9:29 PM, Gorgon said:

Usually just paste the log file into a code block or a spoiler

 

The log in the FAHcontrol should show errors

Sorry for the late reply:

Spoiler

*********************** Log Started 2019-08-19T10:49:30Z ***********************
10:49:30:************************* Folding@home Client *************************
10:49:30:        Website: https://foldingathome.org/
10:49:30:      Copyright: (c) 2009-2018 foldingathome.org
10:49:30:         Author: Joseph Coffland <joseph@cauldrondevelopment.com>
10:49:30:           Args: --config /opt/fah/config.xml --exec-directory=/opt/fah
10:49:30:                 --data-directory=/opt/fah
10:49:30:         Config: /opt/fah/config.xml
10:49:30:******************************** Build ********************************
10:49:30:        Version: 7.5.1
10:49:30:           Date: May 11 2018
10:49:30:           Time: 19:59:04
10:49:30:     Repository: Git
10:49:30:       Revision: 4705bf53c635f88b8fe85af7675557e15d491ff0
10:49:30:         Branch: master
10:49:30:       Compiler: GNU 6.3.0 20170516
10:49:30:        Options: -std=gnu++98 -O3 -funroll-loops
10:49:30:       Platform: linux2 4.14.0-3-amd64
10:49:30:           Bits: 64
10:49:30:           Mode: Release
10:49:30:******************************* System ********************************
10:49:30:            CPU: Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
10:49:30:         CPU ID: GenuineIntel Family 6 Model 44 Stepping 2
10:49:30:           CPUs: 12
10:49:30:         Memory: 15.65GiB
10:49:30:    Free Memory: 15.19GiB
10:49:30:        Threads: POSIX_THREADS
10:49:30:     OS Version: 5.1
10:49:30:    Has Battery: false
10:49:30:     On Battery: false
10:49:30:     UTC Offset: -4
10:49:30:            PID: 764
10:49:30:            CWD: /opt/fah
10:49:30:             OS: Linux 5.1.21-1-MANJARO x86_64
10:49:30:        OS Arch: AMD64
10:49:30:           GPUs: 1
10:49:30:          GPU 0: Bus:3 Slot:0 Func:0 AMD:5 Curacao Pro [Radeon Rx 270/370]
10:49:30:           CUDA: Not detected: Failed to open dynamic library 'libcuda.so':
10:49:30:                 libcuda.so: cannot open shared object file: No such file or
10:49:30:                 directory
10:49:30:OpenCL Device 0: Platform:0 Device:0 Bus:NA Slot:NA Compute:1.1 Driver:19.1
10:49:30:***********************************************************************
10:49:30:<config>
10:49:30:  <!-- Network -->
10:49:30:  <proxy v=':8080'/>
10:49:30:
10:49:30:  <!-- Slot Control -->
10:49:30:  <power v='full'/>
10:49:30:
10:49:30:  <!-- User Information -->
10:49:30:  <passkey v='********************************'/>
10:49:30:  <team v='223518'/>
10:49:30:  <user v='kelvinhall05'/>
10:49:30:
10:49:30:  <!-- Folding Slots -->
10:49:30:  <slot id='0' type='CPU'>
10:49:30:    <cpus v='12'/>
10:49:30:    <paused v='true'/>
10:49:30:  </slot>
10:49:30:  <slot id='1' type='GPU'>
10:49:30:    <gpu-index v='0'/>
10:49:30:    <paused v='true'/>
10:49:30:  </slot>
10:49:30:</config>
10:49:30:Trying to access database...
10:49:30:Successfully acquired database lock
10:49:30:Enabled folding slot 00: PAUSED cpu:12 (by user)
10:49:30:Enabled folding slot 01: PAUSED gpu:0:Curacao Pro [Radeon Rx 270/370] (by user)
12:53:47:FS00:Unpaused
12:53:47:FS01:Unpaused
12:53:47:WU00:FS00:Connecting to 65.254.110.245:8080
12:53:47:WU01:FS01:Connecting to 65.254.110.245:8080
12:53:47:WU00:FS00:Assigned to work server 128.252.203.9
12:53:47:WU00:FS00:Requesting new work unit for slot 00: READY cpu:12 from 128.252.203.9
12:53:47:WU00:FS00:Connecting to 128.252.203.9:8080
12:53:48:WU01:FS01:Assigned to work server 140.163.4.241
12:53:48:WU01:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:53:48:WU01:FS01:Connecting to 140.163.4.241:8080
12:53:48:WU00:FS00:Downloading 8.14MiB
12:53:48:WU01:FS01:Downloading 16.53MiB
12:53:50:WU00:FS00:Download complete
12:53:50:WU00:FS00:Received Unit: id:00 state:DOWNLOAD error:NO_ERROR project:13826 run:815 clone:1 gen:70 core:0xa7 unit:0x0000004e80fccb095c979a26e68a8fca
12:53:50:WU00:FS00:Starting
12:53:50:WU00:FS00:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/Core_a7.fah/FahCore_a7 -dir 00 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -np 12
12:53:50:WU00:FS00:Started FahCore on PID 9679
12:53:50:WU00:FS00:Core PID:9683
12:53:50:WU00:FS00:FahCore 0xa7 started
12:53:50:WU00:FS00:0xa7:*********************** Log Started 2019-08-19T12:53:50Z ***********************
12:53:50:WU00:FS00:0xa7:************************** Gromacs Folding@home Core ***************************
12:53:50:WU00:FS00:0xa7:       Type: 0xa7
12:53:50:WU00:FS00:0xa7:       Core: Gromacs
12:53:50:WU00:FS00:0xa7:    Website: https://foldingathome.org/
12:53:50:WU00:FS00:0xa7:  Copyright: (c) 2009-2018 foldingathome.org
12:53:50:WU00:FS00:0xa7:     Author: Joseph Coffland <joseph@cauldrondevelopment.com>
12:53:50:WU00:FS00:0xa7:       Args: -dir 00 -suffix 01 -version 705 -lifeline 9679 -checkpoint 15 -np
12:53:50:WU00:FS00:0xa7:             12
12:53:50:WU00:FS00:0xa7:     Config: <none>
12:53:50:WU00:FS00:0xa7:************************************ Build *************************************
12:53:50:WU00:FS00:0xa7:    Version: 0.0.17
12:53:50:WU00:FS00:0xa7:       Date: Apr 27 2018
12:53:50:WU00:FS00:0xa7:       Time: 19:09:25
12:53:50:WU00:FS00:0xa7: Repository: Git
12:53:50:WU00:FS00:0xa7:   Revision: 21359963583d09ec2063ef946399441c4df4ccd7
12:53:50:WU00:FS00:0xa7:     Branch: master
12:53:50:WU00:FS00:0xa7:   Compiler: GNU 6.3.0 20170516
12:53:50:WU00:FS00:0xa7:    Options: -std=gnu++98 -O3 -funroll-loops
12:53:50:WU00:FS00:0xa7:   Platform: linux2 4.14.0-3-amd64
12:53:50:WU00:FS00:0xa7:       Bits: 64
12:53:50:WU00:FS00:0xa7:       Mode: Release
12:53:50:WU00:FS00:0xa7:       SIMD: sse2
12:53:50:WU00:FS00:0xa7:************************************ System ************************************
12:53:50:WU00:FS00:0xa7:        CPU: Intel(R) Xeon(R) CPU X5650 @ 2.67GHz
12:53:50:WU00:FS00:0xa7:     CPU ID: GenuineIntel Family 6 Model 44 Stepping 2
12:53:50:WU00:FS00:0xa7:       CPUs: 12
12:53:50:WU00:FS00:0xa7:     Memory: 15.65GiB
12:53:50:WU00:FS00:0xa7:Free Memory: 1.99GiB
12:53:50:WU00:FS00:0xa7:    Threads: POSIX_THREADS
12:53:50:WU00:FS00:0xa7: OS Version: 5.1
12:53:50:WU00:FS00:0xa7:Has Battery: false
12:53:50:WU00:FS00:0xa7: On Battery: false
12:53:50:WU00:FS00:0xa7: UTC Offset: -4
12:53:50:WU00:FS00:0xa7:        PID: 9683
12:53:50:WU00:FS00:0xa7:        CWD: /opt/fah/work
12:53:50:WU00:FS00:0xa7:         OS: Linux 5.1.21-1-MANJARO x86_64
12:53:50:WU00:FS00:0xa7:    OS Arch: AMD64
12:53:50:WU00:FS00:0xa7:********************************************************************************
12:53:50:WU00:FS00:0xa7:Project: 13826 (Run 815, Clone 1, Gen 70)
12:53:50:WU00:FS00:0xa7:Unit: 0x0000004e80fccb095c979a26e68a8fca
12:53:50:WU00:FS00:0xa7:Reading tar file core.xml
12:53:50:WU00:FS00:0xa7:Reading tar file frame70.tpr
12:53:50:WU00:FS00:0xa7:Digital signatures verified
12:53:50:WU00:FS00:0xa7:Calling: mdrun -s frame70.tpr -o frame70.trr -x frame70.xtc -cpt 15 -nt 12
12:53:50:WU00:FS00:0xa7:Steps: first=8750000 total=125000
12:53:54:WU01:FS01:Download 78.63%
12:53:55:WU01:FS01:Download complete
12:53:55:WU01:FS01:Received Unit: id:01 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:584 gen:5 core:0x21 unit:0x0000000c8ca304f15afabde056ba1c0b
12:53:55:WU01:FS01:Downloading core from http://cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah
12:53:55:WU01:FS01:Connecting to cores.foldingathome.org:80
12:53:55:WU01:FS01:FahCore 21: Downloading 3.23MiB
12:53:56:WU00:FS00:0xa7:Completed 1 out of 125000 steps (0%)
12:53:56:WU01:FS01:FahCore 21: Download complete
12:53:56:WU01:FS01:Valid core signature
12:53:56:WU01:FS01:Unpacked 7.94MiB to cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21
12:53:56:WU01:FS01:Starting
12:53:56:WU01:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 01 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:53:56:WU01:FS01:Started FahCore on PID 9715
12:53:56:WU01:FS01:Core PID:9719
12:53:56:WU01:FS01:FahCore 0x21 started
12:53:56:WU01:FS01:0x21:*********************** Log Started 2019-08-19T12:53:56Z ***********************
12:53:56:WU01:FS01:0x21:Project: 11714 (Run 0, Clone 584, Gen 5)
12:53:56:WU01:FS01:0x21:Unit: 0x0000000c8ca304f15afabde056ba1c0b
12:53:56:WU01:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:53:56:WU01:FS01:0x21:Machine: 1
12:53:56:WU01:FS01:0x21:Reading tar file core.xml
12:53:56:WU01:FS01:0x21:Reading tar file integrator.xml
12:53:56:WU01:FS01:0x21:Reading tar file state.xml
12:53:56:WU01:FS01:0x21:Reading tar file system.xml
12:53:56:WU01:FS01:0x21:Digital signatures verified
12:53:56:WU01:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:53:56:WU01:FS01:0x21:Version 0.0.20
12:53:57:WU01:FS01:0x21:ERROR:126: Bad platformId size.
12:53:57:WU01:FS01:0x21:Saving result file logfile_01.txt
12:53:57:WU01:FS01:0x21:Saving result file log.txt
12:53:57:WU01:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:53:57:WARNING:WU01:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:53:57:WU01:FS01:Sending unit results: id:01 state:SEND error:FAULTY project:11714 run:0 clone:584 gen:5 core:0x21 unit:0x0000000c8ca304f15afabde056ba1c0b
12:53:57:WU01:FS01:Uploading 6.00KiB to 140.163.4.241
12:53:57:WU01:FS01:Connecting to 140.163.4.241:8080
12:53:57:WU01:FS01:Upload complete
12:53:57:WU01:FS01:Server responded WORK_ACK (400)
12:53:57:WU01:FS01:Cleaning up
12:53:57:WU02:FS01:Connecting to 65.254.110.245:8080
12:53:58:WU02:FS01:Assigned to work server 140.163.4.241
12:53:58:WU02:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:53:58:WU02:FS01:Connecting to 140.163.4.241:8080
12:53:58:WU02:FS01:Downloading 16.53MiB
12:54:01:WU02:FS01:Download complete
12:54:01:WU02:FS01:Received Unit: id:02 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:1288 gen:6 core:0x21 unit:0x0000000a8ca304f15afabde14988bdea
12:54:01:WU02:FS01:Starting
12:54:01:WU02:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 02 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:01:WU02:FS01:Started FahCore on PID 9749
12:54:01:WU02:FS01:Core PID:9753
12:54:01:WU02:FS01:FahCore 0x21 started
12:54:01:WU02:FS01:0x21:*********************** Log Started 2019-08-19T12:54:01Z ***********************
12:54:01:WU02:FS01:0x21:Project: 11714 (Run 0, Clone 1288, Gen 6)
12:54:01:WU02:FS01:0x21:Unit: 0x0000000a8ca304f15afabde14988bdea
12:54:01:WU02:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:01:WU02:FS01:0x21:Machine: 1
12:54:01:WU02:FS01:0x21:Reading tar file core.xml
12:54:01:WU02:FS01:0x21:Reading tar file integrator.xml
12:54:01:WU02:FS01:0x21:Reading tar file state.xml
12:54:01:WU02:FS01:0x21:Reading tar file system.xml
12:54:01:WU02:FS01:0x21:Digital signatures verified
12:54:01:WU02:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:01:WU02:FS01:0x21:Version 0.0.20
12:54:01:WU02:FS01:0x21:ERROR:126: Bad platformId size.
12:54:01:WU02:FS01:0x21:Saving result file logfile_01.txt
12:54:01:WU02:FS01:0x21:Saving result file log.txt
12:54:01:WU02:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:01:WARNING:WU02:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:01:WU02:FS01:Sending unit results: id:02 state:SEND error:FAULTY project:11714 run:0 clone:1288 gen:6 core:0x21 unit:0x0000000a8ca304f15afabde14988bdea
12:54:01:WU02:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:01:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:02:WU02:FS01:Upload complete
12:54:02:WU02:FS01:Server responded WORK_ACK (400)
12:54:02:WU02:FS01:Cleaning up
12:54:02:WU01:FS01:Connecting to 65.254.110.245:8080
12:54:02:WU01:FS01:Assigned to work server 140.163.4.241
12:54:02:WU01:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:02:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:02:WU01:FS01:Downloading 16.53MiB
12:54:08:WU01:FS01:Download 71.46%
12:54:10:WU01:FS01:Download complete
12:54:10:WU01:FS01:Received Unit: id:01 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:683 gen:5 core:0x21 unit:0x0000000a8ca304f15afabde019f59f0e
12:54:10:WU01:FS01:Starting
12:54:10:WU01:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 01 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:10:WU01:FS01:Started FahCore on PID 9791
12:54:10:WU01:FS01:Core PID:9795
12:54:10:WU01:FS01:FahCore 0x21 started
12:54:10:WU01:FS01:0x21:*********************** Log Started 2019-08-19T12:54:10Z ***********************
12:54:10:WU01:FS01:0x21:Project: 11714 (Run 0, Clone 683, Gen 5)
12:54:10:WU01:FS01:0x21:Unit: 0x0000000a8ca304f15afabde019f59f0e
12:54:10:WU01:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:10:WU01:FS01:0x21:Machine: 1
12:54:10:WU01:FS01:0x21:Reading tar file core.xml
12:54:10:WU01:FS01:0x21:Reading tar file integrator.xml
12:54:10:WU01:FS01:0x21:Reading tar file state.xml
12:54:10:WU01:FS01:0x21:Reading tar file system.xml
12:54:10:WU01:FS01:0x21:Digital signatures verified
12:54:10:WU01:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:10:WU01:FS01:0x21:Version 0.0.20
12:54:11:WU01:FS01:0x21:ERROR:126: Bad platformId size.
12:54:11:WU01:FS01:0x21:Saving result file logfile_01.txt
12:54:11:WU01:FS01:0x21:Saving result file log.txt
12:54:11:WU01:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:11:WARNING:WU01:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:11:WU01:FS01:Sending unit results: id:01 state:SEND error:FAULTY project:11714 run:0 clone:683 gen:5 core:0x21 unit:0x0000000a8ca304f15afabde019f59f0e
12:54:11:WU01:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:11:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:11:WU01:FS01:Upload complete
12:54:11:WU01:FS01:Server responded WORK_ACK (400)
12:54:11:WU01:FS01:Cleaning up
12:54:11:WU02:FS01:Connecting to 65.254.110.245:8080
12:54:11:WU02:FS01:Assigned to work server 140.163.4.241
12:54:11:WU02:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:11:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:12:WU02:FS01:Downloading 16.53MiB
12:54:15:WU02:FS01:Download complete
12:54:15:WU02:FS01:Received Unit: id:02 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:691 gen:5 core:0x21 unit:0x000000088ca304f15afabde0d25ee1c4
12:54:15:WU02:FS01:Starting
12:54:15:WU02:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 02 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:15:WU02:FS01:Started FahCore on PID 9837
12:54:15:WU02:FS01:Core PID:9841
12:54:15:WU02:FS01:FahCore 0x21 started
12:54:15:WU02:FS01:0x21:*********************** Log Started 2019-08-19T12:54:15Z ***********************
12:54:15:WU02:FS01:0x21:Project: 11714 (Run 0, Clone 691, Gen 5)
12:54:15:WU02:FS01:0x21:Unit: 0x000000088ca304f15afabde0d25ee1c4
12:54:15:WU02:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:15:WU02:FS01:0x21:Machine: 1
12:54:15:WU02:FS01:0x21:Reading tar file core.xml
12:54:15:WU02:FS01:0x21:Reading tar file integrator.xml
12:54:15:WU02:FS01:0x21:Reading tar file state.xml
12:54:15:WU02:FS01:0x21:Reading tar file system.xml
12:54:15:WU02:FS01:0x21:Digital signatures verified
12:54:15:WU02:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:15:WU02:FS01:0x21:Version 0.0.20
12:54:16:WU02:FS01:0x21:ERROR:126: Bad platformId size.
12:54:16:WU02:FS01:0x21:Saving result file logfile_01.txt
12:54:16:WU02:FS01:0x21:Saving result file log.txt
12:54:16:WU02:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:16:WARNING:WU02:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:16:WU02:FS01:Sending unit results: id:02 state:SEND error:FAULTY project:11714 run:0 clone:691 gen:5 core:0x21 unit:0x000000088ca304f15afabde0d25ee1c4
12:54:16:WU02:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:16:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:16:WU02:FS01:Upload complete
12:54:16:WU02:FS01:Server responded WORK_ACK (400)
12:54:16:WU02:FS01:Cleaning up
12:54:16:WU01:FS01:Connecting to 65.254.110.245:8080
12:54:16:WU01:FS01:Assigned to work server 140.163.4.241
12:54:16:WU01:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:16:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:17:WU01:FS01:Downloading 16.53MiB
12:54:20:WU01:FS01:Download complete
12:54:20:WU01:FS01:Received Unit: id:01 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:1313 gen:6 core:0x21 unit:0x000000088ca304f15afabde1f97133df
12:54:20:WU01:FS01:Starting
12:54:20:WU01:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 01 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:20:WU01:FS01:Started FahCore on PID 9875
12:54:20:WU01:FS01:Core PID:9879
12:54:20:WU01:FS01:FahCore 0x21 started
12:54:20:WU01:FS01:0x21:*********************** Log Started 2019-08-19T12:54:20Z ***********************
12:54:20:WU01:FS01:0x21:Project: 11714 (Run 0, Clone 1313, Gen 6)
12:54:20:WU01:FS01:0x21:Unit: 0x000000088ca304f15afabde1f97133df
12:54:20:WU01:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:20:WU01:FS01:0x21:Machine: 1
12:54:20:WU01:FS01:0x21:Reading tar file core.xml
12:54:20:WU01:FS01:0x21:Reading tar file integrator.xml
12:54:20:WU01:FS01:0x21:Reading tar file state.xml
12:54:20:WU01:FS01:0x21:Reading tar file system.xml
12:54:20:WU01:FS01:0x21:Digital signatures verified
12:54:20:WU01:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:20:WU01:FS01:0x21:Version 0.0.20
12:54:21:WU01:FS01:0x21:ERROR:126: Bad platformId size.
12:54:21:WU01:FS01:0x21:Saving result file logfile_01.txt
12:54:21:WU01:FS01:0x21:Saving result file log.txt
12:54:21:WU01:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:21:WARNING:WU01:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:21:WU01:FS01:Sending unit results: id:01 state:SEND error:FAULTY project:11714 run:0 clone:1313 gen:6 core:0x21 unit:0x000000088ca304f15afabde1f97133df
12:54:21:WU01:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:21:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:21:WU01:FS01:Upload complete
12:54:21:WU01:FS01:Server responded WORK_ACK (400)
12:54:21:WU01:FS01:Cleaning up
12:54:21:WU02:FS01:Connecting to 65.254.110.245:8080
12:54:21:WU02:FS01:Assigned to work server 140.163.4.241
12:54:21:WU02:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:21:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:22:WU02:FS01:Downloading 16.53MiB
12:54:25:WU02:FS01:Download complete
12:54:25:WU02:FS01:Received Unit: id:02 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:809 gen:5 core:0x21 unit:0x000000068ca304f15afabde1d8c7e5bf
12:54:26:WU02:FS01:Starting
12:54:26:WU02:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 02 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:26:WU02:FS01:Started FahCore on PID 9909
12:54:26:WU02:FS01:Core PID:9913
12:54:26:WU02:FS01:FahCore 0x21 started
12:54:26:WU02:FS01:0x21:*********************** Log Started 2019-08-19T12:54:26Z ***********************
12:54:26:WU02:FS01:0x21:Project: 11714 (Run 0, Clone 809, Gen 5)
12:54:26:WU02:FS01:0x21:Unit: 0x000000068ca304f15afabde1d8c7e5bf
12:54:26:WU02:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:26:WU02:FS01:0x21:Machine: 1
12:54:26:WU02:FS01:0x21:Reading tar file core.xml
12:54:26:WU02:FS01:0x21:Reading tar file integrator.xml
12:54:26:WU02:FS01:0x21:Reading tar file state.xml
12:54:26:WU02:FS01:0x21:Reading tar file system.xml
12:54:26:WU02:FS01:0x21:Digital signatures verified
12:54:26:WU02:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:26:WU02:FS01:0x21:Version 0.0.20
12:54:26:WU02:FS01:0x21:ERROR:126: Bad platformId size.
12:54:26:WU02:FS01:0x21:Saving result file logfile_01.txt
12:54:26:WU02:FS01:0x21:Saving result file log.txt
12:54:26:WU02:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:27:WARNING:WU02:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:27:WU02:FS01:Sending unit results: id:02 state:SEND error:FAULTY project:11714 run:0 clone:809 gen:5 core:0x21 unit:0x000000068ca304f15afabde1d8c7e5bf
12:54:27:WU02:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:27:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:27:WU02:FS01:Upload complete
12:54:27:WU02:FS01:Server responded WORK_ACK (400)
12:54:27:WU02:FS01:Cleaning up
12:54:27:WU01:FS01:Connecting to 65.254.110.245:8080
12:54:27:WU01:FS01:Assigned to work server 140.163.4.241
12:54:27:WU01:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:27:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:27:WU01:FS01:Downloading 16.53MiB
12:54:30:WU01:FS01:Download complete
12:54:30:WU01:FS01:Received Unit: id:01 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:1715 gen:26 core:0x21 unit:0x000000288ca304f15afabde1f4c5d43b
12:54:30:WU01:FS01:Starting
12:54:30:WU01:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 01 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:30:WU01:FS01:Started FahCore on PID 9943
12:54:30:WU01:FS01:Core PID:9947
12:54:30:WU01:FS01:FahCore 0x21 started
12:54:30:WU01:FS01:0x21:*********************** Log Started 2019-08-19T12:54:30Z ***********************
12:54:30:WU01:FS01:0x21:Project: 11714 (Run 0, Clone 1715, Gen 26)
12:54:30:WU01:FS01:0x21:Unit: 0x000000288ca304f15afabde1f4c5d43b
12:54:30:WU01:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:30:WU01:FS01:0x21:Machine: 1
12:54:30:WU01:FS01:0x21:Reading tar file core.xml
12:54:30:WU01:FS01:0x21:Reading tar file integrator.xml
12:54:30:WU01:FS01:0x21:Reading tar file state.xml
12:54:30:WU01:FS01:0x21:Reading tar file system.xml
12:54:30:WU01:FS01:0x21:Digital signatures verified
12:54:30:WU01:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:30:WU01:FS01:0x21:Version 0.0.20
12:54:31:WU01:FS01:0x21:ERROR:126: Bad platformId size.
12:54:31:WU01:FS01:0x21:Saving result file logfile_01.txt
12:54:31:WU01:FS01:0x21:Saving result file log.txt
12:54:31:WU01:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:31:WARNING:WU01:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:31:WU01:FS01:Sending unit results: id:01 state:SEND error:FAULTY project:11714 run:0 clone:1715 gen:26 core:0x21 unit:0x000000288ca304f15afabde1f4c5d43b
12:54:31:WU01:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:31:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:31:WU01:FS01:Upload complete
12:54:31:WU01:FS01:Server responded WORK_ACK (400)
12:54:31:WU01:FS01:Cleaning up
12:54:31:WU02:FS01:Connecting to 65.254.110.245:8080
12:54:31:WU02:FS01:Assigned to work server 140.163.4.241
12:54:31:WU02:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:31:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:32:WU02:FS01:Downloading 16.53MiB
12:54:33:Saving configuration to /opt/fah/config.xml
12:54:33:<config>
12:54:33:  <!-- Network -->
12:54:33:  <proxy v=':8080'/>
12:54:33:
12:54:33:  <!-- Slot Control -->
12:54:33:  <power v='full'/>
12:54:33:
12:54:33:  <!-- User Information -->
12:54:33:  <passkey v='********************************'/>
12:54:33:  <team v='223518'/>
12:54:33:  <user v='kelvinhall05'/>
12:54:33:
12:54:33:  <!-- Folding Slots -->
12:54:33:  <slot id='0' type='CPU'>
12:54:33:    <cpus v='12'/>
12:54:33:  </slot>
12:54:33:  <slot id='1' type='GPU'>
12:54:33:    <gpu-index v='0'/>
12:54:33:  </slot>
12:54:33:</config>
12:54:35:WU02:FS01:Download complete
12:54:35:WU02:FS01:Received Unit: id:02 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:922 gen:5 core:0x21 unit:0x000000088ca304f15afabde1441b6869
12:54:35:WU02:FS01:Starting
12:54:35:WU02:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 02 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:54:35:WU02:FS01:Started FahCore on PID 9978
12:54:35:WU02:FS01:Core PID:9982
12:54:35:WU02:FS01:FahCore 0x21 started
12:54:36:WU02:FS01:0x21:*********************** Log Started 2019-08-19T12:54:35Z ***********************
12:54:36:WU02:FS01:0x21:Project: 11714 (Run 0, Clone 922, Gen 5)
12:54:36:WU02:FS01:0x21:Unit: 0x000000088ca304f15afabde1441b6869
12:54:36:WU02:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:54:36:WU02:FS01:0x21:Machine: 1
12:54:36:WU02:FS01:0x21:Reading tar file core.xml
12:54:36:WU02:FS01:0x21:Reading tar file integrator.xml
12:54:36:WU02:FS01:0x21:Reading tar file state.xml
12:54:36:WU02:FS01:0x21:Reading tar file system.xml
12:54:36:WU02:FS01:0x21:Digital signatures verified
12:54:36:WU02:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:54:36:WU02:FS01:0x21:Version 0.0.20
12:54:36:WU02:FS01:0x21:ERROR:126: Bad platformId size.
12:54:36:WU02:FS01:0x21:Saving result file logfile_01.txt
12:54:36:WU02:FS01:0x21:Saving result file log.txt
12:54:36:WU02:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:54:36:WARNING:WU02:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:54:36:WU02:FS01:Sending unit results: id:02 state:SEND error:FAULTY project:11714 run:0 clone:922 gen:5 core:0x21 unit:0x000000088ca304f15afabde1441b6869
12:54:36:WU02:FS01:Uploading 6.00KiB to 140.163.4.241
12:54:36:WU02:FS01:Connecting to 140.163.4.241:8080
12:54:36:WU02:FS01:Upload complete
12:54:37:WU02:FS01:Server responded WORK_ACK (400)
12:54:37:WU02:FS01:Cleaning up
12:54:37:WU01:FS01:Connecting to 65.254.110.245:8080
12:54:37:WU01:FS01:Assigned to work server 140.163.4.241
12:54:37:WU01:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 140.163.4.241
12:54:37:WU01:FS01:Connecting to 140.163.4.241:8080
12:54:37:WU01:FS01:Downloading 16.53MiB
12:54:43:WU01:FS01:Download 65.02%
12:54:44:WU01:FS01:Download complete
12:54:44:WU01:FS01:Received Unit: id:01 state:DOWNLOAD error:NO_ERROR project:11714 run:0 clone:1679 gen:7 core:0x21 unit:0x0000000c8ca304f15afabde189a3e364
12:55:34:Saving configuration to /opt/fah/config.xml
12:55:34:<config>
12:55:34:  <!-- Network -->
12:55:34:  <proxy v=':8080'/>
12:55:34:
12:55:34:  <!-- Slot Control -->
12:55:34:  <power v='light'/>
12:55:34:
12:55:34:  <!-- User Information -->
12:55:34:  <passkey v='********************************'/>
12:55:34:  <team v='223518'/>
12:55:34:  <user v='kelvinhall05'/>
12:55:34:
12:55:34:  <!-- Folding Slots -->
12:55:34:  <slot id='0' type='CPU'>
12:55:34:    <cpus v='12'/>
12:55:34:  </slot>
12:55:34:  <slot id='1' type='GPU'>
12:55:34:    <gpu-index v='0'/>
12:55:34:  </slot>
12:55:34:</config>
12:56:26:WU01:FS01:Starting
12:56:26:WU01:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 01 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:56:26:WU01:FS01:Started FahCore on PID 10030
12:56:26:WU01:FS01:Core PID:10034
12:56:26:WU01:FS01:FahCore 0x21 started
12:56:26:WU01:FS01:0x21:*********************** Log Started 2019-08-19T12:56:26Z ***********************
12:56:26:WU01:FS01:0x21:Project: 11714 (Run 0, Clone 1679, Gen 7)
12:56:26:WU01:FS01:0x21:Unit: 0x0000000c8ca304f15afabde189a3e364
12:56:26:WU01:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:56:26:WU01:FS01:0x21:Machine: 1
12:56:26:WU01:FS01:0x21:Reading tar file core.xml
12:56:26:WU01:FS01:0x21:Reading tar file integrator.xml
12:56:26:WU01:FS01:0x21:Reading tar file state.xml
12:56:26:WU01:FS01:0x21:Reading tar file system.xml
12:56:26:WU01:FS01:0x21:Digital signatures verified
12:56:26:WU01:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:56:26:WU01:FS01:0x21:Version 0.0.20
12:56:26:WU01:FS01:0x21:ERROR:126: Bad platformId size.
12:56:26:WU01:FS01:0x21:Saving result file logfile_01.txt
12:56:26:WU01:FS01:0x21:Saving result file log.txt
12:56:26:WU01:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:56:27:WARNING:WU01:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:56:27:WU01:FS01:Sending unit results: id:01 state:SEND error:FAULTY project:11714 run:0 clone:1679 gen:7 core:0x21 unit:0x0000000c8ca304f15afabde189a3e364
12:56:27:WU01:FS01:Uploading 6.00KiB to 140.163.4.241
12:56:27:WU01:FS01:Connecting to 140.163.4.241:8080
12:56:27:WU01:FS01:Upload complete
12:56:27:WU01:FS01:Server responded WORK_ACK (400)
12:56:27:WU01:FS01:Cleaning up
12:56:27:WU02:FS01:Connecting to 65.254.110.245:8080
12:56:27:WU02:FS01:Assigned to work server 128.252.203.4
12:56:27:WU02:FS01:Requesting new work unit for slot 01: READY gpu:0:Curacao Pro [Radeon Rx 270/370] from 128.252.203.4
12:56:27:WU02:FS01:Connecting to 128.252.203.4:8080
12:56:30:WU02:FS01:Downloading 1.79MiB
12:56:30:WU02:FS01:Download complete
12:56:31:WU02:FS01:Received Unit: id:02 state:DOWNLOAD error:NO_ERROR project:13816 run:0 clone:789 gen:239 core:0x21 unit:0x0000015680fccb045b36d01d092a02be
12:56:31:WU02:FS01:Starting
12:56:31:WU02:FS01:Running FahCore: /opt/fah/FAHCoreWrapper /opt/fah/cores/cores.foldingathome.org/Linux/AMD64/NVIDIA/Fermi/Core_21.fah/FahCore_21 -dir 02 -suffix 01 -version 705 -lifeline 764 -checkpoint 15 -gpu-vendor amd -opencl-platform 0 -opencl-device 0 -gpu 0
12:56:31:WU02:FS01:Started FahCore on PID 10080
12:56:31:WU02:FS01:Core PID:10084
12:56:31:WU02:FS01:FahCore 0x21 started
12:56:31:WU02:FS01:0x21:*********************** Log Started 2019-08-19T12:56:31Z ***********************
12:56:31:WU02:FS01:0x21:Project: 13816 (Run 0, Clone 789, Gen 239)
12:56:31:WU02:FS01:0x21:Unit: 0x0000015680fccb045b36d01d092a02be
12:56:31:WU02:FS01:0x21:CPU: 0x00000000000000000000000000000000
12:56:31:WU02:FS01:0x21:Machine: 1
12:56:31:WU02:FS01:0x21:Reading tar file core.xml
12:56:31:WU02:FS01:0x21:Reading tar file integrator.xml
12:56:31:WU02:FS01:0x21:Reading tar file state.xml
12:56:32:WU02:FS01:0x21:Reading tar file system.xml
12:56:32:WU02:FS01:0x21:Digital signatures verified
12:56:32:WU02:FS01:0x21:Folding@home GPU Core21 Folding@home Core
12:56:32:WU02:FS01:0x21:Version 0.0.20
12:56:32:WU02:FS01:0x21:ERROR:126: Bad platformId size.
12:56:32:WU02:FS01:0x21:Saving result file logfile_01.txt
12:56:32:WU02:FS01:0x21:Saving result file log.txt
12:56:32:WU02:FS01:0x21:Folding@home Core Shutdown: BAD_WORK_UNIT
12:56:33:WARNING:WU02:FS01:FahCore returned: BAD_WORK_UNIT (114 = 0x72)
12:56:33:WU02:FS01:Sending unit results: id:02 state:SEND error:FAULTY project:13816 run:0 clone:789 gen:239 core:0x21 unit:0x0000015680fccb045b36d01d092a02be
12:56:33:WU02:FS01:Uploading 2.19KiB to 128.252.203.4
12:56:33:WU02:FS01:Connecting to 128.252.203.4:8080
12:56:33:WU02:FS01:Upload complete
12:56:33:WU02:FS01:Server responded WORK_ACK (400)
12:56:33:WU02:FS01:Cleaning up
12:56:35:Saving configuration to /opt/fah/config.xml
12:56:35:<config>
12:56:35:  <!-- Network -->
12:56:35:  <proxy v=':8080'/>
12:56:35:
12:56:35:  <!-- Slot Control -->
12:56:35:  <power v='full'/>
12:56:35:
12:56:35:  <!-- User Information -->
12:56:35:  <passkey v='********************************'/>
12:56:35:  <team v='223518'/>
12:56:35:  <user v='kelvinhall05'/>
12:56:35:
12:56:35:  <!-- Folding Slots -->
12:56:35:  <slot id='0' type='CPU'>
12:56:35:    <cpus v='12'/>
12:56:35:  </slot>
12:56:35:  <slot id='1' type='GPU'>
12:56:35:    <gpu-index v='0'/>
12:56:35:  </slot>
12:56:35:</config>
 

 

Quote me to see my reply!

SPECS:

CPU: Ryzen 7 3700X Motherboard: MSI B450-A Pro Max RAM: 32GB I forget GPU: MSI Vega 56 Storage: 256GB NVMe boot, 512GB Samsung 850 Pro, 1TB WD Blue SSD, 1TB WD Blue HDD PSU: Inwin P85 850w Case: Fractal Design Define C Cooling: Stock for CPU, be quiet! case fans, Morpheus Vega w/ be quiet! Pure Wings 2 for GPU Monitor: 3x Thinkvision P24Q on a Steelcase Eyesite triple monitor stand Mouse: Logitech MX Master 3 Keyboard: Focus FK-9000 (heavily modded) Mousepad: Aliexpress cat special Headphones:  Sennheiser HD598SE and Sony Linkbuds

 

🏳️‍🌈

Link to comment
Share on other sites

Link to post
Share on other sites

@Gorgon Probably worth mentioning driver and setup for AMD cards as well, since I'm sure there's a fairly large bunch of budget systems on RX5x0, Vega, and APU (vega) graphics as well.

Link to comment
Share on other sites

Link to post
Share on other sites

On 8/19/2019 at 8:55 AM, kelvinhall05 said:

ERROR:126: Bad platformId siz

Kevin,

 

Googling this indicates it is usually due to a dad driver install.

 

Sorry I took so long to respond I’m up at a cottage on my Cellular Data

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

Hopefully in a few weeks I'll have some time to look into my linux driver issue.  The APU's GPU works on Windows once the AMD drivers are installed, and does a pretty reasonable job at folding.  I had gotten linux and F@H to see it, but it still wouldn't use it, despite other opencl stuff running ok.  Definitely no time right now though.  ?

Link to comment
Share on other sites

Link to post
Share on other sites

  • 3 weeks later...
On 8/19/2019 at 11:41 AM, justpoet said:

@Gorgon Probably worth mentioning driver and setup for AMD cards as well, since I'm sure there's a fairly large bunch of budget systems on RX5x0, Vega, and APU (vega) graphics as well.

Sure, but I dont have any AMD GPUs, well, except for a FirePro WX4100 in my Windows 10 Daily Driver) and some other older, no longer supported, ones I keep for resurrecting dead hardware.

 

Now if you wanted to write some notes on getting AMD GPUs working I'd be happy to include them.

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

32 minutes ago, Gorgon said:

Sure, but I dont have any AMD GPUs, well, except for a FirePro WX4100 in my Windows 10 Daily Driver) and some other older, no longer supported, ones I keep for resurrecting dead hardware.

 

Now if you wanted to write some notes on getting AMD GPUs working I'd be happy to include them.

If I had managed to make it work with F@H, I'd be happy to.  But for the moment it runs Win when I do that.  The AMD stuff worked well for other things though, such as games, under linux.

Link to comment
Share on other sites

Link to post
Share on other sites

1 hour ago, justpoet said:

If I had managed to make it work with F@H, I'd be happy to.  But for the moment it runs Win when I do that.  The AMD stuff worked well for other things though, such as games, under linux.

Oh, too bad. Which AMD card?

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

2 hours ago, Gorgon said:

Oh, too bad. Which AMD card?

For now just the 2400g APU (vega 11).

Link to comment
Share on other sites

Link to post
Share on other sites

I have a Vega 64 that wont get WU:s, but I have mixed vendors, both Nvidia and AMD that seems to be impossible to get to play nicely with F@H under Linux. Shame on all that unused power... and heat.... ?

Link to comment
Share on other sites

Link to post
Share on other sites

14 minutes ago, Mattias Edeslatt said:

I have a Vega 64 that wont get WU:s, but I have mixed vendors, both Nvidia and AMD that seems to be impossible to get to play nicely with F@H under Linux. Shame on all that unused power... and heat.... ?

You're not missing that much, Vega does pretty terribly on F@H. My $699 RVII eating 250-300W is beaten by a $299 1660 Ti sipping 130W or so max. Vega 64 does a bit better than the RVII due to 64CUs vs 60 (IIRC) on the VII, but Nvidia cards are still much better for the power/heat/cost, especially Pascal/Turing. 

Intel HEDT and Server platform enthusiasts: Intel HEDT Xeon/i7 Megathread 

 

Main PC 

CPU: i9 7980XE @4.5GHz/1.22v/-2 AVX offset 

Cooler: EKWB Supremacy Block - custom loop w/360mm +280mm rads 

Motherboard: EVGA X299 Dark 

RAM:4x8GB HyperX Predator DDR4 @3200Mhz CL16 

GPU: Nvidia FE 2060 Super/Corsair HydroX 2070 FE block 

Storage:  1TB MP34 + 1TB 970 Evo + 500GB Atom30 + 250GB 960 Evo 

Optical Drives: LG WH14NS40 

PSU: EVGA 1600W T2 

Case & Fans: Corsair 750D Airflow - 3x Noctua iPPC NF-F12 + 4x Noctua iPPC NF-A14 PWM 

OS: Windows 11

 

Display: LG 27UK650-W (4K 60Hz IPS panel)

Mouse: EVGA X17

Keyboard: Corsair K55 RGB

 

Mobile/Work Devices: 2020 M1 MacBook Air (work computer) - iPhone 13 Pro Max - Apple Watch S3

 

Other Misc Devices: iPod Video (Gen 5.5E, 128GB SD card swap, running Rockbox), Nintendo Switch

Link to comment
Share on other sites

Link to post
Share on other sites

@Zando Bob Agree on that. That is what I also have figured. But it hurts a little that there is so much potential power that is not utilized by F@H by the lack of support by them, and by AMD.

 

EDIT:

Trying to justify the purchase of a 1660 Ti just to fold on, to compensate for the Vega 64:s lack of production ? ?

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Mattias Edeslatt said:

@Zando Bob Agree on that. That is what I also have figured. But it hurts a little that there is so much potential power that is not utilized by F@H by the lack of support by them, and by AMD.

Facts, especially since Vega cards usually bring fricken beefed stats to compute workloads. 

Intel HEDT and Server platform enthusiasts: Intel HEDT Xeon/i7 Megathread 

 

Main PC 

CPU: i9 7980XE @4.5GHz/1.22v/-2 AVX offset 

Cooler: EKWB Supremacy Block - custom loop w/360mm +280mm rads 

Motherboard: EVGA X299 Dark 

RAM:4x8GB HyperX Predator DDR4 @3200Mhz CL16 

GPU: Nvidia FE 2060 Super/Corsair HydroX 2070 FE block 

Storage:  1TB MP34 + 1TB 970 Evo + 500GB Atom30 + 250GB 960 Evo 

Optical Drives: LG WH14NS40 

PSU: EVGA 1600W T2 

Case & Fans: Corsair 750D Airflow - 3x Noctua iPPC NF-F12 + 4x Noctua iPPC NF-A14 PWM 

OS: Windows 11

 

Display: LG 27UK650-W (4K 60Hz IPS panel)

Mouse: EVGA X17

Keyboard: Corsair K55 RGB

 

Mobile/Work Devices: 2020 M1 MacBook Air (work computer) - iPhone 13 Pro Max - Apple Watch S3

 

Other Misc Devices: iPod Video (Gen 5.5E, 128GB SD card swap, running Rockbox), Nintendo Switch

Link to comment
Share on other sites

Link to post
Share on other sites

  • 3 weeks later...

Any chance we can get this post pinned @leadeater? Seems that a lot of people have been asking about folding on Linux lately.

Folding Community Board:

Also check out our Official Folding Month event:

 

Link to comment
Share on other sites

Link to post
Share on other sites

  • 4 weeks later...

I would add to this.. When testing on this on the old Dell optiplex , I dont know if this has an issue with other machines but will let you know as I change the setup for the last week of folding .

 

The only way I could install without any errors at the start was to leave everything at default. When trying to make it add UK for default language install would fail with CD/DVD read error so added the language later with no issues.. Interesting. 

 

Also in the graphics driver install 

sudo apt get install nvidia-driver-xxx  would not work for me 
sudo apt install nvidia-driver-xxx did so I guess thats a typo ;) 
Link to comment
Share on other sites

Link to post
Share on other sites

26 minutes ago, B_T_B said:

I would add to this.. When testing on this on the old Dell optiplex , I dont know if this has an issue with other machines but will let you know as I change the setup for the last week of folding .

 

The only way I could install without any errors at the start was to leave everything at default. When trying to make it add UK for default language install would fail with CD/DVD read error so added the language later with no issues.. Interesting. 

 

Also in the graphics driver install 


sudo apt get install nvidia-driver-xxx  would not work for me 

sudo apt install nvidia-driver-xxx did so I guess thats a typo ;) 

Oh when using apt-get there is supposed to the hyphen in there. Its the same command either way. but if in the future you use apt-get just make sure to add the "-"

Folding Community Board:

Also check out our Official Folding Month event:

 

Link to comment
Share on other sites

Link to post
Share on other sites

29 minutes ago, B_T_B said:

The only way I could install without any errors at the start was to leave everything at default. When trying to make it add UK for default language install would fail with CD/DVD read error so added the language later with no issues.. Interesting.

Yeah, I've just given up and use US. Less keystrokes.

31 minutes ago, B_T_B said:

sudo apt get install nvidia-driver-xxx would not work for me


sudo apt install nvidia-driver-xxx did so I guess thats a typo ;) 

Thanks - as @palespartan said it is a typo and should be "apt-get" or simply just "apt" these days.

 

Correction made

FaH BOINC HfM

Bifrost - 6 GPU Folding Rig  Linux Folding HOWTO Folding Remote Access Folding GPU Profiling ToU Scheduling UPS

Systems:

desktop: Lian-Li O11 Air Mini; Asus ProArt x670 WiFi; Ryzen 9 7950x; EVGA 240 CLC; 4 x 32GB DDR5-5600; 2 x Samsung 980 Pro 500GB PCIe3 NVMe; 2 x 8TB NAS; AMD FirePro W4100; MSI 4070 Ti Super Ventus 2; Corsair SF750

nas1: Fractal Node 804; SuperMicro X10sl7-f; Xeon e3-1231v3; 4 x 8GB DDR3-1666 ECC; 2 x 250GB Samsung EVO Pro SSD; 7 x 4TB Seagate NAS; Corsair HX650i

nas2: Synology DS-123j; 2 x 6TB WD Red Plus NAS

nas3: Synology DS-224+; 2 x 12TB Seagate NAS

dcn01: Fractal Meshify S2; Gigabyte Aorus ax570 Master; Ryzen 9 5900x; Noctua NH-D15; 4 x 16GB DDR4-3200; 512GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750Mx

dcn02: Fractal Meshify S2; Gigabyte ax570 Pro WiFi; Ryzen 9 3950x; Noctua NH-D15; 2 x 16GB DDR4-3200; 128GB NVMe; 2 x Zotac AMP 4070ti; Corsair RM750x

dcn03: Fractal Meshify C; Gigabyte Aorus z370 Gaming 5; i9-9900k; BeQuiet! PureRock 2 Black; 2 x 8GB DDR4-2400; 128GB SATA m.2; MSI 4070 Ti Super Gaming X; MSI 4070 Ti Super Ventus 2; Corsair TX650m

dcn05: Fractal Define S; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SATA NVMe; Gigabyte Gaming RTX 4080 Super; Corsair TX750m

dcn06: Fractal Focus G Mini; Gigabyte Aorus b450m; Ryzen 7 2700; AMD Wraith; 2 x 8GB DDR 4-3200; 128GB SSD; Gigabyte Gaming RTX 4080 Super; Corsair CX650m

Link to comment
Share on other sites

Link to post
Share on other sites

12 minutes ago, palespartan said:

Oh when using apt-get there is supposed to the hyphen in there. Its the same command either way. but if in the future you use apt-get just make sure to add the "-"

See even in my old age of a IT so called professional that has been windowzided all his life. I learn something new. I feel a change is in the air ?

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×