All Projects → stefancrain → folding-at-home

stefancrain / folding-at-home

Licence: MIT license
A Folding@Home Docker container with GPU support

Programming Languages

Dockerfile
14818 projects
Makefile
30231 projects

Projects that are alternatives of or similar to folding-at-home

fahclient
Dockerized Folding@home client with NVIDIA GPU support to help battle COVID-19
Stars: ✭ 38 (+0%)
Mutual labels:  nvidia-docker, foldingathome, covid-19, folding-at-home
Openclga
A Python Library for Genetic Algorithm on OpenCL
Stars: ✭ 103 (+171.05%)
Mutual labels:  cpu, opencl
Amdovx Core
AMD OpenVX Core -- a sub-module of amdovx-modules:
Stars: ✭ 139 (+265.79%)
Mutual labels:  cpu, opencl
Ilgpu
ILGPU JIT Compiler for high-performance .Net GPU programs
Stars: ✭ 374 (+884.21%)
Mutual labels:  cpu, opencl
folding-at-home
Unofficial docker image for f@h
Stars: ✭ 66 (+73.68%)
Mutual labels:  foldingathome, folding-at-home
hass-foldingathomecontrol
Homeassistant integration for FoldingAtHomeControl
Stars: ✭ 15 (-60.53%)
Mutual labels:  foldingathome, folding-at-home
BruteForce
A simple brute forcer written in GO for SHA1, SHA256, SHA512, MD5 and bcrypt
Stars: ✭ 49 (+28.95%)
Mutual labels:  opencl, gpu-support
darknet
Darknet on OpenCL Convolutional Neural Networks on OpenCL on Intel & NVidia & AMD & Mali GPUs for macOS & GNU/Linux
Stars: ✭ 160 (+321.05%)
Mutual labels:  cpu, opencl
cowin-slot-tracker
Tracker to check the covid shot slot availability in India and send mobile alerts via Telegram Bot.
Stars: ✭ 30 (-21.05%)
Mutual labels:  covid-19
covid-19-map
Monitoring coronavirus :(
Stars: ✭ 15 (-60.53%)
Mutual labels:  covid-19
Remote-Work-and-Study-Resources
Free services, tools, articles and other resources for remote workers and distance learners
Stars: ✭ 49 (+28.95%)
Mutual labels:  covid-19
ncov2019
从官方数据中提取我感兴趣的2019新型冠状病毒发展情况
Stars: ✭ 20 (-47.37%)
Mutual labels:  covid-19
perfmonger
No description or website provided.
Stars: ✭ 39 (+2.63%)
Mutual labels:  cpu
cpu
cpu command in Go, inspired by the Plan 9 cpu command
Stars: ✭ 135 (+255.26%)
Mutual labels:  cpu
spector
Spector: An OpenCL FPGA Benchmark Suite
Stars: ✭ 38 (+0%)
Mutual labels:  opencl
covid19analysis
COVID-10 Analysis
Stars: ✭ 16 (-57.89%)
Mutual labels:  covid-19
spu-mark-ii
CPU and home computer project
Stars: ✭ 14 (-63.16%)
Mutual labels:  cpu
awesome-social-distancing
😷 Collection of awesome resources, tools, and initiatives to alleviate loneliness, isolation, and other burdens imposed by "social distancing" measures.
Stars: ✭ 13 (-65.79%)
Mutual labels:  covid-19
BetterVanillaGenerator
This plugin not only provides better terrain generators for Nukkit, you can also customize your world by modifying the configuration.
Stars: ✭ 26 (-31.58%)
Mutual labels:  opencl
covid-19-data
COVID-19 datasets are constructed entirely from primary (government and public agency) sources
Stars: ✭ 104 (+173.68%)
Mutual labels:  covid-19

Running Folding@Home in docker with GPU support

build auto-update

GitHub Tag GitHub commit activity Docker Layers Docker Size Docker Stars

Fighting COVID-19, and other diseases

TL;DR: Folding at home is simulating the dynamics of COVID-19 proteins to hunt for new therapeutic opportunities. This container distributes the binary in a hope to increase installs.

FAH links

Unofficial, Unsupported

I'm not a member of the F@H team. I actively work on issues here, and have set this up to automatically update in my absence. This image is published to stefancrain/folding-at-home and automatically updated as the folding-at-home team releases changes.

Prerequisites

Deployment

CLI docker run

docker run \
  --name folding-at-home \
  --gpus all \
  -p 7396:7396 \
  stefancrain/folding-at-home:latest \
  --user=YOUR_NAME_HERE \
  --team=229500 \
  --power=full \
  --gpu-usage=100 \
  --cpu-usage=100

Docker-compose

Docker-compose GPU access is currently blocked by upstream issue in compose #6691, tracked in #4. This will work for CPU folding only :

---
version: "3"
services:
  folding-at-home:
    image: stefancrain/folding-at-home:latest
    container_name: folding-at-home
    ports:
      - 7396:7396
    restart: unless-stopped
    command: ["--user=YOUR_NAME_HERE","--team=229500","--power=full","--gpu=false","--cpu-usage=100"]

K8s

I don't currently have a K8s cluster at home, so I'm including examples of users running this image in their config.

  • onedr0p/k3s-gitops works great but /u/onedrop has no approved GPUs to test
  • coreweave/fah-docker (a different container) but the config to support GPU enabled docker container, untested (by me)

TODO: create k8s cluster and test!

Troubleshooting and FAQ

nvidia-docker

Is your docker run aborting with error could not select device driver "" with capabilities: [[gpu]]?

Please be sure you installed nvidia-docker as indicated in the 'Prerequisites' section above.

Nvidia

Does docker see all GPUs?

docker run \
 --rm \
 --gpus all \
 --entrypoint="nvidia-smi" \
 stefancrain/folding-at-home:latest

FAHClient

What are the FAHClient defaults set for this container?

  • User : Anonymous
  • Team : Homelab - 229500 who?
  • Power : full (use full CPU)
  • gpu-usage : 100%
  • cpu-usage : 100%
  • web-allow/allow : allow web traffic to port 7396
  • smp : support smp

How do I review my FAHClient config?

docker run \
 --rm \
 --gpus all \
 --entrypoint="/usr/bin/FAHClient" \
 stefancrain/folding-at-home:latest \
 --info

How can I see additional config options?

docker run \
 --rm \
 --entrypoint="/usr/bin/FAHClient" \
 stefancrain/folding-at-home:latest \
 --help

How can I see my progress?

By default the container is open to local network traffic on 127.0.0.1:7396

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].