Skip to content

Commit

Permalink
Merge pull request #29 from tenstorrent/28-change-max_devices-default…
Browse files Browse the repository at this point in the history
…-to-32

Change max_devices default to 32
  • Loading branch information
alewycky-tenstorrent authored Aug 7, 2024
2 parents 892a08b + 7232b6b commit 6695488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.");

Expand Down

0 comments on commit 6695488

Please sign in to comment.