From 79d811ac6e55cd4639477320f774e97e7e9391a4 Mon Sep 17 00:00:00 2001 From: Andrew Lewycky Date: Tue, 12 Nov 2024 14:29:11 -0500 Subject: [PATCH] TTKMD v1.30 --- 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 5c5303f..83afee6 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,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.29 +sudo dkms install tenstorrent/1.30 sudo modprobe tenstorrent ``` (or reboot, driver will auto-load next boot) @@ -26,6 +26,6 @@ sudo modprobe tenstorrent ### To uninstall: ``` sudo modprobe -r tenstorrent -sudo dkms remove tenstorrent/1.29 --all +sudo dkms remove tenstorrent/1.30 --all ``` diff --git a/dkms.conf b/dkms.conf index 16d4cc6..73616bc 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="tenstorrent" -PACKAGE_VERSION="1.29" +PACKAGE_VERSION="1.30" BUILT_MODULE_NAME="tenstorrent" DEST_MODULE_LOCATION="/kernel/extra" diff --git a/module.c b/module.c index a456fe0..4ffba29 100644 --- a/module.c +++ b/module.c @@ -9,7 +9,7 @@ #include "chardev.h" #include "enumerate.h" -#define TTDRIVER_VER "1.29" +#define TTDRIVER_VER "1.30" MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Tenstorrent AI kernel driver");