From 7232b6b9c5319f624304232057fc283cbe9bde62 Mon Sep 17 00:00:00 2001 From: Andrew Lewycky <129779718+alewycky-tenstorrent@users.noreply.github.com> Date: Wed, 7 Aug 2024 16:47:23 +0000 Subject: [PATCH] Change max_devices default to 32 --- module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.c b/module.c index 4cc616a..14ed6ef 100644 --- a/module.c +++ b/module.c @@ -15,7 +15,7 @@ MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Tenstorrent AI kernel driver"); MODULE_VERSION(TTDRIVER_VER); -static uint max_devices = 16; +static uint max_devices = 32; module_param(max_devices, uint, 0444); MODULE_PARM_DESC(max_devices, "Maximum number of tenstorrent devices (chips) to support.");