blob: 5cca9fc90e4d0cdaa6ccb2881a1f5363a13856e9 [file] [log] [blame]
Austin Schuhdace2a62020-08-18 10:56:48 -07001#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"