Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
fp-counters.c
Go to the documentation of this file.
1#if GLOBAL_COUNTERS != 0
2
3#include <stdint.h>
4#include "fp-counters.h"
5
6__thread uint64_t fpadd = 0; // counter of fp-additions
7__thread uint64_t fpsqr = 0; // counter of fp-squarings
8__thread uint64_t fpmul = 0;
9
10#endif