From fd2c1e5e047f4183684973f7fdee9048e60d3fae Mon Sep 17 00:00:00 2001 From: ImmanuelSegol <3ditds@gmail.com> Date: Wed, 31 Jan 2024 23:04:53 -0400 Subject: [PATCH] refactor --- docs/icicle/primitives/msm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/icicle/primitives/msm.md b/docs/icicle/primitives/msm.md index dfca082..6c075ac 100644 --- a/docs/icicle/primitives/msm.md +++ b/docs/icicle/primitives/msm.md @@ -105,7 +105,7 @@ Batch MSM allows you to run many MSMs with a single API call, Single MSM will la ### Which mode should I use ? -This decision is highly dependent on your use case and design. However if your design allows for it using batch mode can significantly improve efficiency. Batch processing allows you to perform multiple operations concurrently, leveraging parallel processing capabilities of the GPU. +This decision is highly dependent on your use case and design. However if your design allows for it using batch mode can significantly improve efficiency. Batch processing allows you to perform multiple MSM leveraging parallel processing capabilities of the GPU. Single MSM mode should be used when batching isnt possible or when you have to run a single MSM.