We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efedca4 commit bd03552Copy full SHA for bd03552
optimum/intel/ipex/modeling_base.py
@@ -68,8 +68,6 @@ def _is_patched_with_ipex(model, task):
68
return False
69
70
if isinstance(model, torch.jit.ScriptModule):
71
- if is_ipex_version("<", "2.3.0"):
72
- return False
73
for node in model.graph.nodes():
74
# Jit will record the codes position so we can check if the node use ipex exporter.
75
if "torch_ipex::rotary_position_embedding" in node.__str__():
0 commit comments