diff --git a/README.md b/README.md index 044df6b..5c5303f 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.28 +sudo dkms install tenstorrent/1.29 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.28 --all +sudo dkms remove tenstorrent/1.29 --all ``` diff --git a/dkms.conf b/dkms.conf index e403b93..16d4cc6 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="tenstorrent" -PACKAGE_VERSION="1.28" +PACKAGE_VERSION="1.29" BUILT_MODULE_NAME="tenstorrent" DEST_MODULE_LOCATION="/kernel/extra" diff --git a/module.c b/module.c index 14ed6ef..a456fe0 100644 --- a/module.c +++ b/module.c @@ -9,7 +9,7 @@ #include "chardev.h" #include "enumerate.h" -#define TTDRIVER_VER "1.28" +#define TTDRIVER_VER "1.29" MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Tenstorrent AI kernel driver");