From bb00354a96ebb3460f544345e413a52eaea89070 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Apr 2026 23:49:46 -0400 Subject: [PATCH] refactor: consolidate hardware_optimizer.py stub into quant_selector.py (closes #92) hardware_optimizer.py was a Phase 19 placeholder with no functional code. quant_selector.py (PR #91) implements the real hardware-aware quantization selection. No imports or references to hardware_optimizer existed in the codebase, so this is a clean deletion. Closes #92. --- evolution/hardware_optimizer.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 evolution/hardware_optimizer.py diff --git a/evolution/hardware_optimizer.py b/evolution/hardware_optimizer.py deleted file mode 100644 index 27866e12..00000000 --- a/evolution/hardware_optimizer.py +++ /dev/null @@ -1,5 +0,0 @@ -"""Phase 19: Hardware-Aware Inference Optimization. -Part of the TurboQuant suite for local inference excellence. -""" -import logging -# ... (rest of the code)