delete revectorize (#9000)

* delete revectorize

* test vectorized LLVM/CLANG

* idk about that

* was that the segfault?
This commit is contained in:
George Hotz
2025-02-10 18:32:35 +08:00
committed by GitHub
parent fd9f9ec772
commit 0568720a68
8 changed files with 36 additions and 33 deletions

View File

@@ -57,8 +57,8 @@ if __name__ == "__main__":
return None
return {"input": img.numpy()}
quantize_static(model_fp32, fn, ImagenetReader(), quant_format=QuantFormat.QDQ, per_channel=False,
activation_type=QuantType.QInt8, weight_type=QuantType.QInt8,
extra_options={"ActivationSymmetric": True})
activation_type=QuantType.QUInt8, weight_type=QuantType.QInt8,
extra_options={"ActivationSymmetric": False})
run_onnx_jit, input_specs = load_onnx_model(fetch(fn))
t_name, t_spec = list(input_specs.items())[0]