Austin Schuh | bb1338c | 2024-06-15 19:31:16 -0700 | [diff] [blame] | 1 | #define mpn_toomMN_mul mpn_toom6h_mul |
2 | #define mpn_toomMN_mul_itch mpn_toom6h_mul_itch | ||||
3 | |||||
4 | #define SIZE_LOG 11 | ||||
5 | |||||
6 | /* Smaller sizes not supported; may lead to recursive calls to | ||||
7 | toom22_mul, toom33_mul, or toom44_mul with invalid input size. */ | ||||
8 | #define MIN_AN MUL_TOOM6H_MIN | ||||
9 | #define MIN_BN(an) (MAX ((an*3)>>3, 46)) | ||||
10 | |||||
11 | #define COUNT 1000 | ||||
12 | |||||
13 | #include "toom-shared.h" |