Simplify Aach64 polynomial multiply tests

pull/739/head
Jeffrey Walton 2018-11-12 16:27:48 -05:00
parent 1070186bc4
commit 75c9775944
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 3 deletions

View File

@ -13,11 +13,9 @@ int main(int argc, char* argv[])
poly64_t a1={0x9090909090909090}, b1={0xb0b0b0b0b0b0b0b0};
poly8x16_t a2={0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0},
b2={0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,
0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0,0xe0};
poly128_t r1 = vmull_p64(a1, b1);
poly128_t r2 = vmull_high_p64((poly64x2_t)(a2), (poly64x2_t)(b2));
poly128_t r2 = vmull_high_p64(a1, b1);
return 0;
}