onnx-diagnostic 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,5 +3,5 @@ Investigates onnx models.
3
3
  Functions, classes to dig into a model when this one is right, slow, wrong...
4
4
  """
5
5
 
6
- __version__ = "0.2.0"
6
+ __version__ = "0.2.1"
7
7
  __author__ = "Xavier Dupré"
@@ -311,7 +311,7 @@ class ModelInputs:
311
311
  shapes[i] = self.guess_dynamic_shape_object(*[o[i] for o in objs])
312
312
  return shapes
313
313
 
314
- if obj.__class__.__name__ in ("DynamicCache", "patched_DynamicCache"):
314
+ if obj.__class__.__name__ == "DynamicCache":
315
315
  kc = set(len(o.key_cache) for o in objs)
316
316
  assert (
317
317
  len(kc) == 1