From 4ac99fd75b5f553709db4c7fd633158a3754dc6b Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 9 Aug 2024 12:19:35 +0200 Subject: [PATCH] Make more optimizations optional --- himbaechel/uarch/ng-ultra/pack.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/himbaechel/uarch/ng-ultra/pack.cc b/himbaechel/uarch/ng-ultra/pack.cc index f6ee8358..27bca4ef 100644 --- a/himbaechel/uarch/ng-ultra/pack.cc +++ b/himbaechel/uarch/ng-ultra/pack.cc @@ -2099,8 +2099,10 @@ void NgUltraImpl::pack() packer.pack_cys(); if (!args.options.count("no-xlut")) packer.pack_xluts(); - packer.pack_lut_multi_dffs(); - packer.pack_dff_chains(); + if (!args.options.count("no-lut-chains")) + packer.pack_lut_multi_dffs(); + if (!args.options.count("no-dff-chains")) + packer.pack_dff_chains(); packer.pack_lut_dffs(); packer.pack_dffs();