From 3bb90e439a9b07028e10a545998b72c837be5d16 Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Mon, 13 Sep 2021 11:06:28 +0200 Subject: update weights FU74... --- riscV/OpWeights.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'riscV') diff --git a/riscV/OpWeights.ml b/riscV/OpWeights.ml index 2ec663cf..aba025a8 100644 --- a/riscV/OpWeights.ml +++ b/riscV/OpWeights.ml @@ -95,9 +95,9 @@ module FU74 = struct | CEbneuw _ | CEbltw _ | CEbltuw _ | CEbgew _ | CEbgeuw _ | CEbeql _ | CEbnel _ | CEbequl _ | CEbneul _ | CEbltl _ | CEbltul _ | CEbgel _ | CEbgeul _ -> - [| 1; 0; 1; 0; 0 |] + [| 1; 0; 0; 0; 0 |] | Ccompf _ | Cnotcompf _ | Ccompfs _ | Cnotcompfs _ -> - [| 1; 0; 1; 1; 0 |]) + [| 1; 0; 0; 1; 0 |]) | _ -> [| 1; 0; 0; 0; 0 |] let non_pipelined_resources_of_op (op : operation) (nargs : int) = -- cgit