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");