* @brief Sets the maximum number of array handles that can be created. * * @param maxCount The maximum number of array handles. If negative, dynamic allocation is used and no hard limit is defined. * @throw An exception is thrown if the nvcvConfigSetMaxArrayCount function fails. */
| 69 | * @throw An exception is thrown if the nvcvConfigSetMaxArrayCount function fails. |
| 70 | */ |
| 71 | inline void SetMaxArrayCount(int32_t maxCount) |
| 72 | { |
| 73 | detail::CheckThrow(nvcvConfigSetMaxArrayCount(maxCount)); |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * @brief Sets the maximum number of allocator handles that can be created. |