t-toom8h.c revision 1.1.1.2
1155213Srwatson#define mpn_toomMN_mul mpn_toom8h_mul
2155213Srwatson#define mpn_toomMN_mul_itch mpn_toom8h_mul_itch
3155213Srwatson
4155213Srwatson#define SIZE_LOG 11
5155213Srwatson
6155213Srwatson/* Smaller sizes not supported; may lead to recursive calls to
7155213Srwatson   toom{22,33,44,6h}_mul with invalid input size. */
8162629Srwatson#define MIN_AN MUL_TOOM8H_MIN
9162629Srwatson
10155213Srwatson#define MIN_BN(an)			 \
11155213Srwatson(MAX(GMP_NUMB_BITS <= 10*3 ? (an*6)/10 : \
12155213Srwatson     GMP_NUMB_BITS <= 11*3 ? (an*5)/11 : \
13155213Srwatson     GMP_NUMB_BITS <= 12*3 ? (an*4)/12 : \
14155213Srwatson     (an*4)/13, 86) )
15155213Srwatson
16201390Sed#define COUNT 1000
17201390Sed
18155213Srwatson#include "toom-shared.h"
19