8000 GitHub - tenstorrent/tt-kmd: Tenstorrent Kernel Module
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

tenstorrent/tt-kmd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tenstorrent AI Kernel-Mode Driver

Official Repository

https://github.com/tenstorrent/tt-kmd

Supported hardware:

  • Grayskull
  • Wormhole
  • Blackhole

The driver registers device files named /dev/tenstorrent/%d, one for each enumerated device.

To install:

  • You must have dkms installed.
    • apt install dkms (Debian, Ubuntu)
    • dnf install dkms (Fedora)
    • dnf install epel-release && dnf install dkms (Enterprise Linux based)
sudo dkms add .
sudo dkms install tenstorrent/2.0.0
sudo modprobe tenstorrent

(or reboot, driver will auto-load next boot)

To uninstall:

sudo modprobe -r tenstorrent
sudo dkms remove tenstorrent/2.0.0 --all
0