remove print

This commit is contained in:
Saood Karim
2025-05-24 03:49:43 -05:00
parent 16597a3ee2
commit 7486601f0a

View File

@@ -61,7 +61,6 @@ def quantize(data: np.ndarray, qtype: GGMLQuantizationType) -> np.ndarray:
elif (q := _type_traits.get(qtype)) is not None:
return q.quantize(data)
else:
print(_type_traits)
raise NotImplementedError(f"Quantization for {qtype.name} is not yet implemented")