Module Ground_multiplier.Config

type t =
| Verilog_multiply of {
latency : int;
}
| Hybrid_dsp_and_luts of {
latency : int;
lut_only_hamming_weight_threshold : int;
}
| Mixed of {
latency : int;
lut_only_hamming_weight_threshold : int option;
hybrid_hamming_weight_threshold : int option;
}
| Specialized_43_bit_multiply
val sexp_of_t : t -> Sexplib0.Sexp.t
val latency : t -> int