On 2/2/23 02:41, Lawrence Hunter wrote:
+static void do_vclmulh_vv(void *vd, void *vs1, void *vs2, int i) +{ + __uint128_t result = 0;
In passing, you may not use __uint128_t directly, as it is not supported on all hosts. Philipp has given you good advice on adjusting the computation.
r~