From e8e660e9bd90ac4b67fc62c8ec44e08e07bed0be Mon Sep 17 00:00:00 2001 From: Andrew Lewycky Date: Thu, 19 Dec 2024 13:08:02 -0500 Subject: [PATCH] TTKMD v1.31 --- README.md | 4 ++-- dkms.conf | 2 +- module.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 999d68f..8ab77a9 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The driver registers device files named `/dev/tenstorrent/%d`, one for each enum * `dnf install epel-release && dnf install dkms` (Enterprise Linux based) ``` sudo dkms add . -sudo dkms install tenstorrent/1.30-bh +sudo dkms install tenstorrent/1.31 sudo modprobe tenstorrent ``` (or reboot, driver will auto-load next boot) @@ -27,5 +27,5 @@ sudo modprobe tenstorrent ### To uninstall: ``` sudo modprobe -r tenstorrent -sudo dkms remove tenstorrent/1.30-bh --all +sudo dkms remove tenstorrent/1.31 --all ``` diff --git a/dkms.conf b/dkms.conf index 635f506..dde7466 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="tenstorrent" -PACKAGE_VERSION="1.30-bh" +PACKAGE_VERSION="1.31" BUILT_MODULE_NAME="tenstorrent" DEST_MODULE_LOCATION="/kernel/extra" diff --git a/module.c b/module.c index eed4f4e..b20711a 100644 --- a/module.c +++ b/module.c @@ -9,7 +9,7 @@ #include "chardev.h" #include "enumerate.h" -#define TTDRIVER_VER "1.30-bh" +#define TTDRIVER_VER "1.31" MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Tenstorrent AI kernel driver");