)]}'
{
  "commit": "e169d26ccfce28ca45d5b8d5a39734eca81427e3",
  "tree": "89296c69ce4ec1d648f076d6b88301a1e58ff121",
  "parents": [
    "aac89de63ba020d26b7afad7af6b127e7184890c"
  ],
  "author": {
    "name": "Gunhyun Park",
    "email": "gunhyun@google.com",
    "time": "Fri May 26 16:39:18 2023 -0700"
  },
  "committer": {
    "name": "GitHub",
    "email": "noreply@github.com",
    "time": "Fri May 26 16:39:18 2023 -0700"
  },
  "message": "Add interpreter for ScatterOp (#1488)\n\nWe have the following constraints in the spec:\r\n\r\n```\r\n(I1) `inputs` variadic number of tensors.\r\n(I2) `scatter_indices` tensor of integer type.\r\n(I3) `updates` variadic number of tensors.\r\n(I4) `update_window_dims` 1-dimensional tensor constant of type `si64`.\r\n(I5) `inserted_window_dims` 1-dimensional tensor constant of type `si64`.\r\n(I6) `scatter_dims_to_operand_dims` 1-dimensional tensor constant of type `si64`.\r\n(I7) `index_vector_dim` constant of type `si64`.\r\n(I8) `indices_are_sorted` constant of type `i1`.\r\n(I9) `unique_indices` constant of type `i1`.\r\n(I10) `update_computation` function.\r\n(C1) All `inputs` have the same shape.\r\n(C2) rank(`inputs`[0]) \u003d size(`update_window_dims`) +\r\n     size(`inserted_window_dims`).\r\n(C3) All `updates` have the same shape.\r\n(C4) `shape(updates[0])` \u003d\r\n      `combine(update_scatter_dim_sizes, update_window_dim_sizes)` where:\r\n* `update_scatter_dim_sizes` \u003d `shape(scatter_indices)` except that\r\n  the dimension size of `scatter_indices` corresponding to\r\n  `index_vector_dim` is not included.\r\n* `update_window_dim_sizes` \u003c\u003d `shape(inputs[0])` except that\r\n  the dimension sizes in `inputs[0]` corresponding to `inserted_window_dims`\r\n  are not included.\r\n* `combine` puts `update_scatter_dim_sizes` at axes corresponding to\r\n `update_scatter_dims` and `update_window_dim_sizes` at axes corresponding\r\n to `update_window_dims`.\r\n(C5) N \u003d size(`inputs`) \u003d size(`updates`) and N \u003e\u003d 1.\r\n(C6) `element_type(updates[k]) \u003d element_type(inputs[k])` for all k $\\in$\r\n     [0, N).\r\n(C7) All dimensions in `update_window_dims` are unique and sorted.\r\n(C8) For all i in [0, size(`update_window_dims`)), 0 \u003c\u003d\r\n`update_window_dims`[i] \u003c rank(`updates`[0]).\r\n(C9) All dimensions in `inserted_window_dims` are unique and sorted.\r\n(C10) For all i in [0, size(`inserted_window_dims`)), 0 \u003c\u003d\r\n`inserted_window_dims`[i] \u003c rank(`inputs`[0]).\r\n(C11) size(`scatter_dims_to_operand_dims`) \u003d\r\n     `index_vector_dim` \u003c rank(`scatter_indices`) ?\r\n     dim(`scatter_indices`, `index_vector_dim`) : 1.\r\n(C12) All dimensions in `scatter_dims_to_operand_dims` are unique.\r\n(C13) For all i in [0, size(`scatter_dims_to_operand_dims`)), 0 \u003c\u003d\r\n    `scatter_dims_to_operand_dims`[i] \u003c rank(`inputs`[0]).\r\n(C14) 0 \u003c\u003d `index_vector_dim` \u003c\u003d rank(`scatter_indices`).\r\n(C15) `update_computation` has type\r\n      `(tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e, tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e) -\u003e (tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e)`\r\n      where `Ek \u003d element_type(inputs[k])` for all k in [0, N).\r\n(C16) `inputs[k]` and `result[k]` have the same type for all k in [0, N).\r\n```\r\n\r\nThese constraints will be comprehensively covered by the following\r\ntests:\r\n\r\n```\r\nI1: a) `inputs` variadic number of tensors. (Covered by ODS).\r\nI2: a) `scatter_indices` tensor of integer type. (Covered by ODS).\r\nI3: a) `updates` variadic number of tensors. (Covered by ODS).\r\nI4: a) `update_window_dims` 1-dimensional tensor constant of type `si64`. (Covered by ODS).\r\nI5: a) `inserted_window_dims` 1-dimensional tensor constant of type `si64`. (Covered by ODS).\r\nI6: a) `scatter_dims_to_operand_dims` 1-dimensional tensor constant of type `si64`. (Covered by ODS).\r\nI7: a) `index_vector_dim` constant of type `si64`. (Covered by ODS).\r\nI8: a) `indices_are_sorted` constant of type `i1`. (Covered by ODS).\r\nI9: a) `unique_indices` constant of type `i1`. (Covered by ODS).\r\nI10: a) `update_computation` function. (Covered by ODS).\r\nC1: a) Not all `inputs` have the same shape.\r\nC2: a) rank(`inputs`[0]) !\u003d size(`update_window_dims`) +\r\n       size(`inserted_window_dims`).\r\nC3: a) Not all `updates` have the same shape.\r\nC4: a) `shape(updates[0])` !\u003d\r\n      `combine(update_scatter_dim_sizes, update_window_dim_sizes)`.\r\n    b) `update_scatter_dim_sizes` !\u003d `shape(scatter_indices)` except that the\r\n       dimension size of `scatter_indices` corresponding to `index_vector_dim`\r\n       is not included.\r\n    c) `update_window_dim_sizes` \u003c\u003d `shape(inputs[0])` except that the dimension\r\n       sizes in `inputs[0]` corresponding to `inserted_window_dims` are not\r\n       included.\r\n    where `combine` puts `update_scatter_dim_sizes` at axes corresponding to\r\n    `update_scatter_dims` and `update_window_dim_sizes` at axes corresponding to\r\n    `update_window_dims`.\r\nC5: a) N !\u003d size(`inputs`). (Covered by ODS).\r\n    b) N !\u003d size(`updates`). (Covered by ODS).\r\n    c) N \u003c 1. (Covered by ODS).\r\nC6: a) `element_type(updates[k]) !\u003d element_type(inputs[k])` for any k in [0, N).\r\nC7: a) Dimensions in `update_window_dims` are not unique.\r\n    b) Dimensions in `update_window_dims` are not sorted.\r\nC8: a) For any i in [0, size(`update_window_dims`)), `update_window_dims`[i] \u003c 0.\r\n    b) For any i in [0, size(`update_window_dims`)), `update_window_dims`[i] \u003e\u003d rank(`updates`[0]). \r\nC9: a) Dimensions in `inserted_window_dims` are not unique.\r\n    b) Dimensions in `inserted_window_dims` are not sorted.\r\nC10: a) For any i in [0, size(`inserted_window_dims`)), `inserted_window_dims`[i] \u003c 0.\r\n     b) For any i in [0, size(`inserted_window_dims`)), \u003e\u003d rank(`inputs`[0]).\r\nC11: a) size(`scatter_dims_to_operand_dims`) !\u003d\r\n     `index_vector_dim` \u003c rank(`scatter_indices`) ?\r\n     dim(`scatter_indices`, `index_vector_dim`) : 1.\r\nC12: a) Dimensions in `scatter_dims_to_operand_dims` are not unique.\r\nC13: a) For any i in [0, size(`scatter_dims_to_operand_dims`)), `scatter_dims_to_operand_dims`[i] \u003c 0.\r\n     b) For any i in [0, size(`scatter_dims_to_operand_dims`)), `scatter_dims_to_operand_dims`[i] \u003e\u003d rank(`inputs`[0]).\r\nC14: a) `index_vector_dim` \u003c 0.\r\n     b) `index_vector_dim` \u003e rank(`scatter_indices`).\r\nC15: a) `update_computation` does not have type\r\n        `(tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e, tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e) -\u003e (tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e)`\r\n        where `Ek \u003d element_type(inputs[k])` for any k $\\in$ [0, N).\r\nC16: a) type(`inputs[k]`) !\u003d type(`result[k]`) for any k $\\in$ [0, N).\r\n```\r\n\r\nIf we drop the \"Covered by ODS\" pieces, this will leave us with the\r\nfollowing test cases:\r\n\r\n```\r\nC1a: Not all `inputs` have the same shape.\r\nC2a: rank(`inputs`[0]) !\u003d size(`update_window_dims`) + size(`inserted_window_dims`).\r\nC3a: Not all `updates` have the same shape.\r\nC4a: `shape(updates[0])` !\u003d\r\n     `combine(update_scatter_dim_sizes, update_window_dim_sizes)`.\r\nC4b: `update_scatter_dim_sizes` !\u003d `shape(scatter_indices)` except that the\r\n     dimension size of `scatter_indices` corresponding to `index_vector_dim`\r\n     is not included.\r\nC4c: `update_window_dim_sizes` \u003c\u003d `shape(inputs[0])` except that the dimension\r\n     sizes in `inputs[0]` corresponding to `inserted_window_dims` are not\r\n     included.\r\n     where `combine` puts `update_scatter_dim_sizes` at axes corresponding to\r\n     `update_scatter_dims` and `update_window_dim_sizes` at axes corresponding to\r\n     `update_window_dims`.\r\nC6a: `element_type(updates[k]) !\u003d element_type(inputs[k])` for any k in [0, N).\r\nC7a: Dimensions in `update_window_dims` are not unique.\r\nC7b: Dimensions in `update_window_dims` are not sorted.\r\nC8a: For any i in [0, size(`update_window_dims`)), `update_window_dims`[i] \u003c 0.\r\nC8b: For any i in [0, size(`update_window_dims`)), `update_window_dims`[i] \u003e\u003d rank(`updates`[0]). \r\nC9a: Dimensions in `inserted_window_dims` are not unique.\r\nC9b: Dimensions in `inserted_window_dims` are not sorted.\r\nC10a: For any i in [0, size(`inserted_window_dims`)), `inserted_window_dims`[i] \u003c 0.\r\nC10b: For any i in [0, size(`inserted_window_dims`)), \u003e\u003d rank(`inputs`[0]).\r\nC11a: size(`scatter_dims_to_operand_dims`) !\u003d\r\n      `index_vector_dim` \u003c rank(`scatter_indices`) ?\r\n      dim(`scatter_indices`, `index_vector_dim`) : 1.\r\nC12a: Dimensions in `scatter_dims_to_operand_dims` are not unique.\r\nC13a: For any i in [0, size(`scatter_dims_to_operand_dims`)), `scatter_dims_to_operand_dims`[i] \u003c 0.\r\nC13b: For any i in [0, size(`scatter_dims_to_operand_dims`)), `scatter_dims_to_operand_dims`[i] \u003e\u003d rank(`inputs`[0]).\r\nC14a: `index_vector_dim` \u003c 0.\r\nC14b: `index_vector_dim` \u003e rank(`scatter_indices`).\r\nC15a: `update_computation` does not have type\r\n      `(tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e, tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e) -\u003e (tensor\u003cE0\u003e, ..., tensor\u003cEN-1\u003e)`\r\n      where `Ek \u003d element_type(inputs[k])` for any k $\\in$ [0, N).\r\nC16a: type(`inputs[k]`) !\u003d type(`result[k]`) for any k $\\in$ [0, N).\r\n```\r\n\r\nNotes:\r\n  * Some missing verifications were added.\r\n  * Updates typo in spec wording (i.e. For any k -\u003e For all k).\r\n  * Updates notation `do` -\u003e `di`, `ds` -\u003e `dj`\r\n\r\ncloses #987",
  "tree_diff": [
    {
      "type": "modify",
      "old_id": "66096bd5d4d465097df8a800cecbd9439aa0fe56",
      "old_mode": 33188,
      "old_path": "docs/spec.md",
      "new_id": "e19a5899ac4d6a7e83a87198eea937444955c4d6",
      "new_mode": 33188,
      "new_path": "docs/spec.md"
    },
    {
      "type": "modify",
      "old_id": "c80c83865c307b919b853438784ad863daadf5f6",
      "old_mode": 33188,
      "old_path": "docs/status.md",
      "new_id": "b36c8c72579f90a48f6b0ad7da061cf24f2d7942",
      "new_mode": 33188,
      "new_path": "docs/status.md"
    },
    {
      "type": "modify",
      "old_id": "7fa6998ba93c7c60ff8acfd7a112f4bbf789160f",
      "old_mode": 33188,
      "old_path": "stablehlo/dialect/StablehloOps.td",
      "new_id": "a17b378aee6ffc99a5430e3cb8d6028f78eaa906",
      "new_mode": 33188,
      "new_path": "stablehlo/dialect/StablehloOps.td"
    },
    {
      "type": "modify",
      "old_id": "6a23cfd7f4a59641bb4c3170122348825c4b4e36",
      "old_mode": 33188,
      "old_path": "stablehlo/dialect/TypeInference.cpp",
      "new_id": "315104dc091de49646e4703393a91a3f6cadd8f8",
      "new_mode": 33188,
      "new_path": "stablehlo/dialect/TypeInference.cpp"
    },
    {
      "type": "modify",
      "old_id": "80d53f9afff33c7cb4a03f9da7c1e40ce8ec60c1",
      "old_mode": 33188,
      "old_path": "stablehlo/reference/Ops.cpp",
      "new_id": "9bd7b12e587ec45f93c0e529a88b376574422a49",
      "new_mode": 33188,
      "new_path": "stablehlo/reference/Ops.cpp"
    },
    {
      "type": "modify",
      "old_id": "a5ff35e32b1a91a9a5e9a6edea8325b3a60ceca0",
      "old_mode": 33188,
      "old_path": "stablehlo/reference/Ops.h",
      "new_id": "8956580587b853f9e0f6197b5ae3ce87b2a8d99a",
      "new_mode": 33188,
      "new_path": "stablehlo/reference/Ops.h"
    },
    {
      "type": "modify",
      "old_id": "81c509101eda08617b8ae48c21bf115dd498e226",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i3105365873972993397.mlir",
      "new_id": "b85930b8a22c390946bc6bae091d5ea6779d640a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i3105365873972993397.mlir"
    },
    {
      "type": "modify",
      "old_id": "ae063642535b5814a58872b77939ae8ae84db846",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____6907187575661564349.mlir",
      "new_id": "25bcdceec015ae8466fd628b2930e5ced7220779",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____6907187575661564349.mlir"
    },
    {
      "type": "modify",
      "old_id": "8b2cbb2b3801efe62ab32f437c20a60e5d3461ca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in7460671499809967899.mlir",
      "new_id": "37e05503483832dff4ee5778474c282431ed96e4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in7460671499809967899.mlir"
    },
    {
      "type": "modify",
      "old_id": "481c4533edcb7f0b9d52f9cc62336bef1f77ca93",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in6239340358948408549.mlir",
      "new_id": "f5fe8b90dfa894282b5c5268a18d436decf311de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in6239340358948408549.mlir"
    },
    {
      "type": "modify",
      "old_id": "b086b93e7d06380958d259a8e801c79aeec7ab1c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse5866428584412663600.mlir",
      "new_id": "5c8e200150de40f1ed80082308a6ade4c50914de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse5866428584412663600.mlir"
    },
    {
      "type": "modify",
      "old_id": "c8d1f9106f76d8708cde22b0be6438cc28bd2fb2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse3748619223488839328.mlir",
      "new_id": "3fb96904af867b66996d90024b0c9be4fd46661e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse3748619223488839328.mlir"
    },
    {
      "type": "modify",
      "old_id": "106916df492b0d05d6ffa61c42c9116bc044a78d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser6830291740956972723.mlir",
      "new_id": "99e837d139e03e35bf6cc949ddc5e0e4ee677ae2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser6830291740956972723.mlir"
    },
    {
      "type": "modify",
      "old_id": "22ce1907d5069241410e5ca6737718e7ae8f48b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-4520383806230198953.mlir",
      "new_id": "a8def36e20fc10fd63bf528857063247711d6979",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-4520383806230198953.mlir"
    },
    {
      "type": "modify",
      "old_id": "958a337c4f45adb004e06901645c5c87182f3847",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins8809450043985603953.mlir",
      "new_id": "fde4a785d5d96f806d13760daa3a207cb8e66821",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins8809450043985603953.mlir"
    },
    {
      "type": "modify",
      "old_id": "9639449a294c5f4b80a622b6f14bdf87cdc85eb3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-4255998206634939686.mlir",
      "new_id": "47c1f36a6f75e087bed892030d74f6743544b22e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-4255998206634939686.mlir"
    },
    {
      "type": "modify",
      "old_id": "176be1b3a86fe6bf3cc3618a1e5e585f923b5cf9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-348874080094627888.mlir",
      "new_id": "83e7f8f155ed0c36f310e60fe59f9c132dde532e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-348874080094627888.mlir"
    },
    {
      "type": "modify",
      "old_id": "a92a8d6ca4ee29aaabbdceb420bbd9428a32df9a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd7837153478809077655.mlir",
      "new_id": "4f9cee44c74a7a63f720db1d675087541ce8ac7f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd7837153478809077655.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc6bb26d49390d6c77d5754d57b76026371d2b9c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-8890984274374571387.mlir",
      "new_id": "072fe2532e0a915188342ab2c109e89c07c9af1f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-8890984274374571387.mlir"
    },
    {
      "type": "modify",
      "old_id": "562dbe147bfc9a0cb557121a4e7299efe1b412db",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow5145962309437161874.mlir",
      "new_id": "a876e0a5e194965ee1aec8968fc79314e78b71a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow5145962309437161874.mlir"
    },
    {
      "type": "modify",
      "old_id": "6897b383dad88df98c0817eb3463b9e8d8ed1f03",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-860494462789908425.mlir",
      "new_id": "f8c83f8e6465fcedbe7f02600a3246c9777c8190",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-860494462789908425.mlir"
    },
    {
      "type": "modify",
      "old_id": "149afbf2f4ff16aa3093b485be8603a180c1e8a7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up7001784831726631490.mlir",
      "new_id": "a4748af04a5a666dc4e440f52765f88778c1c9ad",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up7001784831726631490.mlir"
    },
    {
      "type": "modify",
      "old_id": "24a053df002202526f1dbe358acb9b80f2462c0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-1496787690744292757.mlir",
      "new_id": "02c50d118e66eee52567dca3e6aba358f1c5a9c2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-1496787690744292757.mlir"
    },
    {
      "type": "modify",
      "old_id": "90b0bfd6b508998e268ed192ba218143a34c2a28",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-9089921811327946742.mlir",
      "new_id": "0d42b297ed0a8465cc965acd427459b7d570be4d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-9089921811327946742.mlir"
    },
    {
      "type": "modify",
      "old_id": "da9ca1bd36990714c98907a81070d79b7a1870f4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-4274570454554491320.mlir",
      "new_id": "cdbf8ad5e54d6cf27321eb9a35f1fe95e68af9b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-4274570454554491320.mlir"
    },
    {
      "type": "modify",
      "old_id": "f05b27d82924e93df1cd1e38b54add7ecaa17024",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3137750960248060622.mlir",
      "new_id": "d869c5265ea3366105ac7dff1881c1cd209c6fa2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3137750960248060622.mlir"
    },
    {
      "type": "modify",
      "old_id": "f37bb3383f6e9fd755736ff6444f23ade4b67ca2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-4030463377469015899.mlir",
      "new_id": "cdfb5f176d59b82c5472da0a57622f2c2c7bd89c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-4030463377469015899.mlir"
    },
    {
      "type": "modify",
      "old_id": "52b919cf1f5bac25219746cefb32a0f3537335b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-889038016403856146.mlir",
      "new_id": "adfaa966c86b04df352a67a3d5a143957019eefe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-889038016403856146.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e3a64403e07ef79098e646d37a63cbb3383c0fe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-1234331839929869546.mlir",
      "new_id": "76c7322142ee5aa9ceacde4c0d817b15a306bc5e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-1234331839929869546.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b86ebd65928cbb5ac8e7494f2ac2d384221bcc3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_5983491590639358181.mlir",
      "new_id": "495cd92707b2eee108f881fbe5fbbda0330ab330",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_5983491590639358181.mlir"
    },
    {
      "type": "modify",
      "old_id": "c1ee27a0f751c709bc30253b10c95a25058682f0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd2891107003300082920.mlir",
      "new_id": "ee80387380406e8aebfa9c6f239dbd0c204074e6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd2891107003300082920.mlir"
    },
    {
      "type": "modify",
      "old_id": "7625a74e47eecd23f5d561cbb11606aea1c221f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd5362217514454606368.mlir",
      "new_id": "81bd712d30c01fec42c82150b8c8824edcd5307e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd5362217514454606368.mlir"
    },
    {
      "type": "modify",
      "old_id": "42c7f7739bc2d4e2ce2ab81942b91c5a83977a4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-3011851052689734097.mlir",
      "new_id": "9fa94d6525db38c31b6154871ee4c5eb3c6da745",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-3011851052689734097.mlir"
    },
    {
      "type": "modify",
      "old_id": "d5ba2eacd9266e4212e2d1352e602ad8278832f6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-8817597417694097826.mlir",
      "new_id": "562945a86fadfb4438bd25b7be7d4528b3e1c9ca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-8817597417694097826.mlir"
    },
    {
      "type": "modify",
      "old_id": "97bcea273f1a4fea4e47fd2aad0b1092b9f733c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_2912963089951762273.mlir",
      "new_id": "b4ad8e61ab5291035ad10fa12dbdb920305bc38a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_2912963089951762273.mlir"
    },
    {
      "type": "modify",
      "old_id": "0d3ad5195896af23b1cdcaa77362dee7efa14864",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_6681012509515424778.mlir",
      "new_id": "aeb789a6676f756d4f4e255871dc87abcf51502f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_6681012509515424778.mlir"
    },
    {
      "type": "modify",
      "old_id": "ffb204ce8732a8f62bd5cb964660e6c78e686452",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7988231109437691189.mlir",
      "new_id": "51540f9bb39611be819a81c4536c53160cabb3c0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7988231109437691189.mlir"
    },
    {
      "type": "modify",
      "old_id": "b8b655798711bcd13904b16a2234e8e5a34d4f51",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_24396378064620439122.mlir",
      "new_id": "8541b587b094aa312165e32e072ab2167fc47744",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_24396378064620439122.mlir"
    },
    {
      "type": "modify",
      "old_id": "1c228328afedc283ffe52ea0ee8f445abf3db0c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-6279399558626821175.mlir",
      "new_id": "b360fecc4edd04c438a60ed23b938ce2f7e64a79",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-6279399558626821175.mlir"
    },
    {
      "type": "modify",
      "old_id": "6a40a3725a2523e2137223c26672616792dfdf95",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__6927296407968934904.mlir",
      "new_id": "78cd9bc56fadc2f29b9c6f2621dae2f24dcfe4d6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__6927296407968934904.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7834223b959a8550949532bc06610397b37d81c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd2596591008964205253.mlir",
      "new_id": "3dc52c842edddd364b85d7aee0617e9f89836a96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd2596591008964205253.mlir"
    },
    {
      "type": "modify",
      "old_id": "964e8af710267be25752f94b057a53de06bb0ca4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd6619490232226873879.mlir",
      "new_id": "41c22068a2a71ff746446ead1abba414cfacd2cc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd6619490232226873879.mlir"
    },
    {
      "type": "modify",
      "old_id": "69418fa137f30497ea5b58b7ef34e20fd6470885",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_5036259221516710960.mlir",
      "new_id": "80c6a909d0742cf6cd245cefb93622b2b8c1e8dc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_5036259221516710960.mlir"
    },
    {
      "type": "modify",
      "old_id": "a2fcab444710033882152151dcf3ed647d6c36cc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_8345937081755116116.mlir",
      "new_id": "3c3fa9c1cc0068ed20de33e78646468944ce274a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_8345937081755116116.mlir"
    },
    {
      "type": "modify",
      "old_id": "16f61162effe3c4e81cf8480bd776176118e87ec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_2951455025951434844.mlir",
      "new_id": "fc4cda4586a1d4d5ef7282a5d83afb54b7bd7b12",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_2951455025951434844.mlir"
    },
    {
      "type": "modify",
      "old_id": "903e4a94577328a4e29c71a9f35cf005cd2b9646",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_695726925484014410.mlir",
      "new_id": "fe6e5aa957aa79f55aa74b2f88f4060402c7c337",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_695726925484014410.mlir"
    },
    {
      "type": "modify",
      "old_id": "0f011a4a43a552c3e995cc414857a4d37563abab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-2774173445130720861.mlir",
      "new_id": "7eb8d54b88334322f313d674a6f058fa0b613330",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-2774173445130720861.mlir"
    },
    {
      "type": "modify",
      "old_id": "16bd4acc28af9109f911666bc8e343a553bdc9c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_28218316950594479828.mlir",
      "new_id": "0ccff5fefb6b816b83871775de3792c54c2d2f95",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_28218316950594479828.mlir"
    },
    {
      "type": "modify",
      "old_id": "43cde591cff5a932779bda08953d3f85ffcd8b8a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-4842756244488458473.mlir",
      "new_id": "cb32e4a3f3ddee43cba429e362b42dd792d8d551",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-4842756244488458473.mlir"
    },
    {
      "type": "modify",
      "old_id": "efa790855cd9dd62be3e2b242bb3892a190f5866",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__3611438175516175350.mlir",
      "new_id": "4f479b781fed4854c9e02dc0c54aa79fe0fe2aad",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__3611438175516175350.mlir"
    },
    {
      "type": "modify",
      "old_id": "d0eeeadc83b75c8e1630d1191a4e79d1dd1a9538",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-7524018678144949761.mlir",
      "new_id": "fef02e1d17938a68e09c45d0c685652c23a492aa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-7524018678144949761.mlir"
    },
    {
      "type": "modify",
      "old_id": "33d25a6a65052fe7f79a30e558186592a8fc2bda",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-9078878771811985072.mlir",
      "new_id": "6fc6fe1125c0f616d3139f01d56dc7a1116b2aca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-9078878771811985072.mlir"
    },
    {
      "type": "modify",
      "old_id": "f1be416e4b8b4ac2c661d1efe45469eda891e6eb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-4916360558570014198.mlir",
      "new_id": "0accdd4f764718f7a5bc31793208fcb673bac7a0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-4916360558570014198.mlir"
    },
    {
      "type": "modify",
      "old_id": "92ff14a80db1669e84b860445323974478e28252",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__29001944072476716824.mlir",
      "new_id": "61cace8da24624ccaf94cc3e114f1d8739e40f85",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__29001944072476716824.mlir"
    },
    {
      "type": "modify",
      "old_id": "f4c466567cfe52dbceade1d4944842a7e051a1e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-3725043703956117426.mlir",
      "new_id": "1bb25c0575cec51ac2b7685c83da602b254c20ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-3725043703956117426.mlir"
    },
    {
      "type": "modify",
      "old_id": "9002e028577c282cfd5592b792830401be666616",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_2656247344843304422.mlir",
      "new_id": "965a6097948d1b7fcfb7c01ff9fbbb2e5d8f6b83",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_2656247344843304422.mlir"
    },
    {
      "type": "modify",
      "old_id": "d4a8a60c0fb8537480fa2a3b774acc0b114c9bd9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-4264486373892608709.mlir",
      "new_id": "01f9ae3b81cb900ff4e2a4de5414d7f8d83c8c9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-4264486373892608709.mlir"
    },
    {
      "type": "modify",
      "old_id": "a640e0ddaebe30e7b7cc05d10e8828b9d6cf8f82",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46479284842160210040.mlir",
      "new_id": "eaa7838d27664c923f1fbf60ff057ea5e546f7a4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46479284842160210040.mlir"
    },
    {
      "type": "modify",
      "old_id": "ac46d189bffb982eb2edac3c75a25a5c6579d4a5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-3591021005421900346.mlir",
      "new_id": "97218e08778a973a1f60fc550e0952b7acbe16fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-3591021005421900346.mlir"
    },
    {
      "type": "modify",
      "old_id": "155870e80b441a35e1cac18839df48a1aeb9d92f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-3594753372927687050.mlir",
      "new_id": "4dcf75eeed95971569b1c6328ad8e60376b45bf6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-3594753372927687050.mlir"
    },
    {
      "type": "modify",
      "old_id": "aa0c28c789a26c71d1d90557d40b26d8f20cc8af",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-354485824406248366.mlir",
      "new_id": "6090bbfdef61aa370c65010532f45b8c65e0d1f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-354485824406248366.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2054fd38412d698389ac44e909a327936975cc8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat2266301288346060632.mlir",
      "new_id": "ad3324e3a5780b56f8dbe8f2c3386dbbd41fe0c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat2266301288346060632.mlir"
    },
    {
      "type": "modify",
      "old_id": "865ed6bdc75fba799908a2676928afaece9b920d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-5393776790984240080.mlir",
      "new_id": "6a5aa8fa9465f74785681b0f447250f676f5293f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-5393776790984240080.mlir"
    },
    {
      "type": "modify",
      "old_id": "31a0410e2a75a2913cc1656df8ffbe2ffe629320",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__28847096142656084415.mlir",
      "new_id": "e0983f05d4b89369fa070046b3d34afbec28f6f0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__28847096142656084415.mlir"
    },
    {
      "type": "modify",
      "old_id": "96e379e076f0d5292b8488b3eca7d91f8c8209bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-7756335029081939712.mlir",
      "new_id": "db7135b795f85162deefda83355f5cf726cbeca8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-7756335029081939712.mlir"
    },
    {
      "type": "modify",
      "old_id": "d099f11b2f16293d887d2eeed205bd744ace020f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_3678348900362642354.mlir",
      "new_id": "c8b44a4ac9350d46058a34b288d97638ee88ae40",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_3678348900362642354.mlir"
    },
    {
      "type": "modify",
      "old_id": "27ac6df9705c6fadc73f83870f857bb103bc1a74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-4098679572412113546.mlir",
      "new_id": "1607d0c3e50c300f04b93e59c5fc01934ab8e2c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-4098679572412113546.mlir"
    },
    {
      "type": "modify",
      "old_id": "ce23978319209468d57b5b29fcdedeff950adb74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_47476426858270645314.mlir",
      "new_id": "df035111e38faa44985c41a556576db6b30187b1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_47476426858270645314.mlir"
    },
    {
      "type": "modify",
      "old_id": "00fde6cd8bbe2d1ba59172f7e6492b68e6759131",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-1822849126982343243.mlir",
      "new_id": "553244c0356015cb2d73f0ba1734c8f122431015",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-1822849126982343243.mlir"
    },
    {
      "type": "modify",
      "old_id": "19953fb809ef6d872077f33955e6a4434753d189",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u3328846888780048830.mlir",
      "new_id": "f340d57f6f70a89ff9859e891321650de989b7fd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u3328846888780048830.mlir"
    },
    {
      "type": "modify",
      "old_id": "ce8c5105c4cf6e19f5b4d3083126e5cff10f12f4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update1622126439350557293.mlir",
      "new_id": "20c6c695132999131ced4bccab26c2e8ef73a549",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update1622126439350557293.mlir"
    },
    {
      "type": "modify",
      "old_id": "24eb95ce6854faaa73acae33df7e901706cfdb40",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update3597746049988735779.mlir",
      "new_id": "4275f4878bf1246a4cd3d785a03cfcea1846a26d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update3597746049988735779.mlir"
    },
    {
      "type": "modify",
      "old_id": "53079999ee079107564c362574e4f43ff989d6b5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_6362923774714678977.mlir",
      "new_id": "45614bee99aca2b79ff01797292866dbbcb68ea6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_6362923774714678977.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a1a742b64cdb7356838bf89242b95d8e1baad03",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_8103024994792774978.mlir",
      "new_id": "ec55d0ee6e33b7e779c5e27e57d04f476d11af0d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_8103024994792774978.mlir"
    },
    {
      "type": "modify",
      "old_id": "fe653833bc8e1dfa4fb100a95cf72cec55be8e9e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-1988417011434006362.mlir",
      "new_id": "38b7d9f69ab1865b72d51b65eb39524298e0dc93",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-1988417011434006362.mlir"
    },
    {
      "type": "modify",
      "old_id": "a2ad4a5777230c729694403c4c8ac50dc01a2eee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_27199336242141289053.mlir",
      "new_id": "f437613520b6cd1940ef88f7b4e7e65423b75d4c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_27199336242141289053.mlir"
    },
    {
      "type": "modify",
      "old_id": "33a30e2662bf5e9bec065ee374d1c2b673d29da0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-3231048872442668326.mlir",
      "new_id": "d997c0c1a7272bf6ace0891d9f0894e1763226d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-3231048872442668326.mlir"
    },
    {
      "type": "modify",
      "old_id": "09cea026657b3b0bbcf8214cdc738222af7ede62",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-4160837117599691199.mlir",
      "new_id": "92c04e29e2a42c7c916557203375932244877341",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-4160837117599691199.mlir"
    },
    {
      "type": "modify",
      "old_id": "a47c2b62b7e3b9e4900e9161a0ecad878aa162cc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-7917886033026925853.mlir",
      "new_id": "28bb514ad63a60f5b7d97e80cafa4f341e40c579",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-7917886033026925853.mlir"
    },
    {
      "type": "modify",
      "old_id": "354bf9c33a03fbddf70fc5aa6fafe43f5d412ecc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up2271924756491171274.mlir",
      "new_id": "1ff5cc4b97de30e2e14cd5a41dea2cfc8a05ca35",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up2271924756491171274.mlir"
    },
    {
      "type": "modify",
      "old_id": "270c814519952445ff63c21bf4a32a6f7cb0c996",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda7888681396332677014.mlir",
      "new_id": "bc067b25271001bcd020e3c2047e0d1c3dd82346",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda7888681396332677014.mlir"
    },
    {
      "type": "modify",
      "old_id": "57a2f60823b63cf614c7527e8f4f1310c90309f4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda945060147471783225.mlir",
      "new_id": "6dd7cef3ee752051ef6ce1c65f3763d74a2408c5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda945060147471783225.mlir"
    },
    {
      "type": "modify",
      "old_id": "2628214ccf8d6d5ee0752ae5d24a0473af5d1fef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__2510805737105385550.mlir",
      "new_id": "c414530b4b0e64427759faca92b885ba0e4a0ab1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__2510805737105385550.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e2f1e65e7d94129bab83e123ac5f7cf9f6cbcf5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8091763406930871598.mlir",
      "new_id": "7a4668346af5d22ffd36fb5684dce45c7272a21e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8091763406930871598.mlir"
    },
    {
      "type": "modify",
      "old_id": "de90ab3b11dd3f369a6e92130952da8fc8f5f2ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-4926747791685884640.mlir",
      "new_id": "92db7690ce3d95dfbb1059ab4016834f461efef9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-4926747791685884640.mlir"
    },
    {
      "type": "modify",
      "old_id": "21bc235de97647b2d093557247f8cda139a8f7fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_56146930483457941673.mlir",
      "new_id": "716df7a3a176cc8fc06e8aa73c3f266b912fa2c1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_56146930483457941673.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e1d730fc0547e5bf03dc36e46c2e1a266fcba6d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-4592846424164456833.mlir",
      "new_id": "de2b2f7ee7ec8d12ed2beb81b5cf73a85b903cc7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-4592846424164456833.mlir"
    },
    {
      "type": "modify",
      "old_id": "3972a37e36a80dc418e480566ec44c4841eb3b83",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_7666466305816482669.mlir",
      "new_id": "67b5dbaff857166ac6a27192ce81495298a2fc07",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_7666466305816482669.mlir"
    },
    {
      "type": "modify",
      "old_id": "8244d1b0c3c6c9dd5cf1c022af7968e034e4de98",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-3882386100438535526.mlir",
      "new_id": "8a101a7679d58afb3d711247d8554be22f655859",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-3882386100438535526.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a88dad02e36679f263e69b0c9d544386cdc18de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-5979552203502821981.mlir",
      "new_id": "96525e2a31e8104e2c60c54dea80553b214662f8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-5979552203502821981.mlir"
    },
    {
      "type": "modify",
      "old_id": "f7b4341afcdc8859c487a11d16d3a2a4a423082a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda136913410679994980.mlir",
      "new_id": "6c6a0218d0974f628528455d06b6a6f1ef6a7cc7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda136913410679994980.mlir"
    },
    {
      "type": "modify",
      "old_id": "286358ca26ef9638244863e68ccfa9661211cd98",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda7842463203097941877.mlir",
      "new_id": "0d54e5156f90ebbbb25061ac464313477084eda1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda7842463203097941877.mlir"
    },
    {
      "type": "modify",
      "old_id": "a6f7457c962caf8f4fa181c1ceb65601df971059",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-1309214087076147471.mlir",
      "new_id": "239969889b060fe4316be26d9bb60b254681a8e1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-1309214087076147471.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f87856584feb37c63c334ff86ca5dd413fa9a7b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__97537607199806852.mlir",
      "new_id": "d678a876c43e9de9546abbdbdcee0213da2f106f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__97537607199806852.mlir"
    },
    {
      "type": "modify",
      "old_id": "d408dbb0d13529fe64f54dabed83236eaa516e64",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-410985334763389823.mlir",
      "new_id": "a13881f63c0c7e89b0a91c7d29bd5999532c3f56",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-410985334763389823.mlir"
    },
    {
      "type": "modify",
      "old_id": "825b0f495abe0097f74846644ae1c62b4b2dbc6e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-6577423887713838439.mlir",
      "new_id": "5c22a688984b763e4ff0c796642a40ab1591f64a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-6577423887713838439.mlir"
    },
    {
      "type": "modify",
      "old_id": "304c24a7cd1fe81ff5d329222cfd19d80b186c34",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_1623717598696775517.mlir",
      "new_id": "a86f88b8f29b2b0e4f4d5970bdf3c5390e50c536",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_1623717598696775517.mlir"
    },
    {
      "type": "modify",
      "old_id": "c94811b3aa8c0ec7e58af7dce5e613d08697786f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_8309401109674874640.mlir",
      "new_id": "d537f8289d676a2dd364b73e30a630fe0de56fd0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_8309401109674874640.mlir"
    },
    {
      "type": "modify",
      "old_id": "e21426eafad6dea9517b708033c47ed3a9da944f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___3455481995801809237.mlir",
      "new_id": "55632fba6d2edfb3ca96c7ea3ae179b029ec3129",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___3455481995801809237.mlir"
    },
    {
      "type": "modify",
      "old_id": "3d9f7a6c43ae67584356f755c5a02b504985c243",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___7498308269064318243.mlir",
      "new_id": "118d85d56d77189ba017324337a4871543eca6a8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___7498308269064318243.mlir"
    },
    {
      "type": "modify",
      "old_id": "4368bbf2b1e89f81ffd12c544d8f818c408da6a5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-9207802865953907581.mlir",
      "new_id": "ac7f41f41f6a8dc43e9ada7675b9b66c3ae5fa3b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-9207802865953907581.mlir"
    },
    {
      "type": "modify",
      "old_id": "ea118d77766ae6992bd3e52e908c7e9ac98c44cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat9140858870677867005.mlir",
      "new_id": "27c76f503fc5f403471e31813d08ae794da7fb3c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat9140858870677867005.mlir"
    },
    {
      "type": "modify",
      "old_id": "36a50ad40669210fb47f41f817c3055696b01f5c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__21352603121447941903.mlir",
      "new_id": "d51513bf42837c078e0079a5b5cf4737b006b262",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__21352603121447941903.mlir"
    },
    {
      "type": "modify",
      "old_id": "94bd5586aa753b7be8feb12fdace68f4d1196cad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__27480559985512445156.mlir",
      "new_id": "a028fcc8ab107ac2bb4f503aba6a1a0ccb7a2bb7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__27480559985512445156.mlir"
    },
    {
      "type": "modify",
      "old_id": "da8013cec781c9945778e92766499925debc91c9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-6393488545608218666.mlir",
      "new_id": "f03bff6109128b01e32434cdecf45bfd41971ead",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-6393488545608218666.mlir"
    },
    {
      "type": "modify",
      "old_id": "ce93a4ed38c79d7eea1284074ec3960f4f1a0947",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-92958002531278788.mlir",
      "new_id": "e2138844eac2e906061f8110c9c3523c1e1c852b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-92958002531278788.mlir"
    },
    {
      "type": "modify",
      "old_id": "09d8bd60889a8b5ac500d90be722a0c291af1f7d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_42856711317682290752.mlir",
      "new_id": "a00feb81c41c3e2a705633d799c55f00ca3f7a6d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_42856711317682290752.mlir"
    },
    {
      "type": "modify",
      "old_id": "96c6b0fd6600b0e96eb925ec6daf28895ba29ac6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_42902961225811021078.mlir",
      "new_id": "d9abe493c381768b5a87c85290479ef3bbb3044c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_42902961225811021078.mlir"
    },
    {
      "type": "modify",
      "old_id": "34fe563136ac9ff5f33ca7b1bab016ddeaf451cb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u4321644361351952093.mlir",
      "new_id": "73844589ca4015e983c7adf813ab532e037ff479",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u4321644361351952093.mlir"
    },
    {
      "type": "modify",
      "old_id": "0133a7caa0e4a99f421b6a1f4f3be74c69916e48",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u5648339647004024495.mlir",
      "new_id": "4d7bd4557e8a15483a09deaabf22ac6b11c597bc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u5648339647004024495.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e2f852c2a229cfaf9b754d8717048a9f9358f22",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-8617159013234137769.mlir",
      "new_id": "186d0dd678d94040199a1fef43b72e80b76e55b8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-8617159013234137769.mlir"
    },
    {
      "type": "modify",
      "old_id": "34cfe0360af9710588769e3274341024cab16dc9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6144652360058557977.mlir",
      "new_id": "eb8f5f6545ab3269ccdaedcd03ffabaf868de83b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6144652360058557977.mlir"
    },
    {
      "type": "modify",
      "old_id": "5a6c581f7fc00ef1e1849ba4c0c822c3b8fa6dee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-1556558392001991646.mlir",
      "new_id": "3fb249dc932006382617daf3026ec0ef7597acfa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-1556558392001991646.mlir"
    },
    {
      "type": "modify",
      "old_id": "7bee5096233f6d4c7295c1bf92df68cbc32b5003",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-5987512261321349511.mlir",
      "new_id": "c30523e56f6f194b248d0260c7bbcff484856093",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-5987512261321349511.mlir"
    },
    {
      "type": "modify",
      "old_id": "bdc9dbfd09080572f1dae94a72642e9133402a4e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-5581034558494065018.mlir",
      "new_id": "3476493fa52a1e6f8806b96d090e268e12dbdd53",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-5581034558494065018.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ef7026bcc7deeb93060f552b18b0ea8571d48b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind8373448553845026835.mlir",
      "new_id": "3e8e0e9bd80a986ecb932219aa4a47fe7f9dd4fe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind8373448553845026835.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f2b46d72bb04b6c1824e5bf832f0a4d1171da73",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-6019789563017120555.mlir",
      "new_id": "2d17af1462f03da682fb7ab2202837b6e4913fa7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-6019789563017120555.mlir"
    },
    {
      "type": "modify",
      "old_id": "794bb065207770e737a8f9ea57a1e7e8627342e0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew9202089644754291152.mlir",
      "new_id": "c8a327fefd59edd3649f846b7efa1e6ab7bbfbca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew9202089644754291152.mlir"
    },
    {
      "type": "modify",
      "old_id": "6bb0a0cba4d279d5b842abdc03b661d5f0b634e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-2741684093322986342.mlir",
      "new_id": "13209739a83caf84e366334099dc992139fa818e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-2741684093322986342.mlir"
    },
    {
      "type": "modify",
      "old_id": "3fce1bed6d9bf3bf45a56a0d2d37de68e59445cf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update7075641444893981314.mlir",
      "new_id": "cc60b89d687d5f11d41be559bfafacadae417529",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update7075641444893981314.mlir"
    },
    {
      "type": "modify",
      "old_id": "c20c5ea667ad657fd4e0eefefa64bd92473c6aff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew425803056863035771.mlir",
      "new_id": "4003679d8f8b0dd7f7b29e674ecaf438687c086e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew425803056863035771.mlir"
    },
    {
      "type": "modify",
      "old_id": "4cb04cccf3cd2c1c32bc2cf66bb976fe95174087",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew9110202218978731330.mlir",
      "new_id": "674d0821eb5273d726da92bb699a23b420964e01",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew9110202218978731330.mlir"
    },
    {
      "type": "modify",
      "old_id": "274055bd60d967566c52d7395f996fd807bcef49",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-6062071545452394866.mlir",
      "new_id": "8fa5498ed6652c40b251ce111395b09d138ffc4b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-6062071545452394866.mlir"
    },
    {
      "type": "modify",
      "old_id": "b31780d7bdbc8acc5b8cc1eda1a110fca2074a2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-8004672162355768985.mlir",
      "new_id": "dc5bb538b4e2d51f1ac2932d9267d9c9d66f4d6d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-8004672162355768985.mlir"
    },
    {
      "type": "modify",
      "old_id": "110d434693fd87e2ba96756a554975cc5967e81f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi-828594468178229581.mlir",
      "new_id": "413523390faf2f8483878d0eab8765ce5a96ef1a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi-828594468178229581.mlir"
    },
    {
      "type": "modify",
      "old_id": "76f57c24532ca282c2c6c6d18b93e1f22760972f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi6429751923890686552.mlir",
      "new_id": "17c04ce94f498d23fc6417bb8af297d7025187b2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi6429751923890686552.mlir"
    },
    {
      "type": "modify",
      "old_id": "8c51635d5190aa4a7649b1ca1f91cbd9925227de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd-6848840407727231745.mlir",
      "new_id": "af4b2a7991003caa5fc544f7e0a8bd470dd3812e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd-6848840407727231745.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a21d103192ab57d7c1147932d4f6e7fe28f3a83",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd1861388025332688117.mlir",
      "new_id": "aad4437d32fcc45eb4a18ecb1160415723ee8f7a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd1861388025332688117.mlir"
    },
    {
      "type": "modify",
      "old_id": "d601ab5f8031564e65e24341ad41ad726909cc3f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-1982638209236671047.mlir",
      "new_id": "3839edbe24a6621d2d98cf93ce1e206845fd204a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-1982638209236671047.mlir"
    },
    {
      "type": "modify",
      "old_id": "11b70c3f2edccf14260a5e9e89f9d00022bf7067",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update2088472121195190538.mlir",
      "new_id": "9ee1dc6720a96e91ab7ac0ec18d02626e55bb720",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update2088472121195190538.mlir"
    },
    {
      "type": "modify",
      "old_id": "d899c6d30e5863e37713856e7526bfad7c600457",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-1093032740725682184.mlir",
      "new_id": "d264e73dc8a4f27eae87c6765acae185e566773a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-1093032740725682184.mlir"
    },
    {
      "type": "modify",
      "old_id": "c5e58054efca05d8d576cbd43f6b6e52f1793ec4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-4922945492660867696.mlir",
      "new_id": "e4224e6166d318125f00a0bdf1ec86eff09fccd6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-4922945492660867696.mlir"
    },
    {
      "type": "modify",
      "old_id": "f5897e41469200ff1d55834683d49d21cf60fb7a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-7603903374362641006.mlir",
      "new_id": "54db9c221cb82387c8a7c4bd12d0d98e45ee6a01",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-7603903374362641006.mlir"
    },
    {
      "type": "modify",
      "old_id": "b686bf97354df28624bb60a4ad45694385609e6b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___3435585015422911912.mlir",
      "new_id": "c2e412db7dc6c2f45a3b6f57b5f31800fd914a03",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___3435585015422911912.mlir"
    },
    {
      "type": "modify",
      "old_id": "32ac3f2ee228d0b2efce7f88486268c87e70314e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates7547332501918920602.mlir",
      "new_id": "d4dd1c42310caca21cca4a8a32b776e66179fe20",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates7547332501918920602.mlir"
    },
    {
      "type": "modify",
      "old_id": "86e5a3818deafbaa0851a58c0c26920c74d9d62b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates8050165712147161814.mlir",
      "new_id": "2d5f2f57da74ea8843b969f5fdb42a7442b88003",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates8050165712147161814.mlir"
    },
    {
      "type": "modify",
      "old_id": "03d48a0c7bdf134bde110d35b4b97e1a936e097f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-4752489888149503617.mlir",
      "new_id": "22d0532c4b3df13c657d96979a626a88187997c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-4752489888149503617.mlir"
    },
    {
      "type": "modify",
      "old_id": "4e465865deadb6a044c799e1d25440bfc753405f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin2053556689837356458.mlir",
      "new_id": "dcaab47db9a817989117d4dd8d72c85c0de6efa8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin2053556689837356458.mlir"
    },
    {
      "type": "modify",
      "old_id": "217008821745a532c975f8f418a6d721f9a608ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-3781116865999811871.mlir",
      "new_id": "f168ad3f76c887fa50745871d088e1f8d72a5260",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-3781116865999811871.mlir"
    },
    {
      "type": "modify",
      "old_id": "a94d5955ad62144bcac14bc534f4e9eff06fb6b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi7533314707669860824.mlir",
      "new_id": "e148730c1dd2f17d188180b99b7228b2126e7c8d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi7533314707669860824.mlir"
    },
    {
      "type": "modify",
      "old_id": "e2e086115e590f1ae1e83569ff2fb93704c57e6b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-8488847812238110952.mlir",
      "new_id": "1c4cb123ae43a60a58aecce68e4671c8b3635358",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-8488847812238110952.mlir"
    },
    {
      "type": "modify",
      "old_id": "8eec72fdde72574bc1d177a98b984bab84f1ccb8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo4277266865564877965.mlir",
      "new_id": "213dd1598cc31ce170caf80ccdc982f0172f670b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo4277266865564877965.mlir"
    },
    {
      "type": "modify",
      "old_id": "d54f42000bffd892129f5f8b6046bf0cbbac8f0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi-5697591077233325860.mlir",
      "new_id": "71ecb44744a9d8f269d57be8255c3abba4e3e3be",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi-5697591077233325860.mlir"
    },
    {
      "type": "modify",
      "old_id": "0624d15ddacbbde779cdbf8c798080f85c37b876",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi5753373379559669218.mlir",
      "new_id": "81bd9514876dee76c45adacf2d6b7aac22ef5b96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi5753373379559669218.mlir"
    },
    {
      "type": "modify",
      "old_id": "bb4d914fcfaa0ba912952d9eb3c06fa091c2aa01",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-1222690156116202003.mlir",
      "new_id": "aeae6bfa9420cfa51a530c9b84b59dabb5056242",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-1222690156116202003.mlir"
    },
    {
      "type": "modify",
      "old_id": "f34bf225c5a9054b6ff9344d96ae24a55721fbf8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-7525130878030551788.mlir",
      "new_id": "5bcc3d2adabdff9de30702bb71b98f918524b64b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-7525130878030551788.mlir"
    },
    {
      "type": "modify",
      "old_id": "b4f37f51751e303b2fc4039650aee44c4dc044c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi1334311401954125279.mlir",
      "new_id": "0b61acae91612727d291789d51d5bd3000bbed6f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi1334311401954125279.mlir"
    },
    {
      "type": "modify",
      "old_id": "fcad2a00375051dbc74c7c4e5a72b8dd81f02f60",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi628492442243500081.mlir",
      "new_id": "2fbe2bf1ff809ec2a8645d544bfcce172bab8fbd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi628492442243500081.mlir"
    },
    {
      "type": "modify",
      "old_id": "0582d0b01b2b06ae1b05c23331f1646a091d203a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-435478597733378491.mlir",
      "new_id": "31260819418f59d6e5b4ae76b9291464403cb051",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-435478597733378491.mlir"
    },
    {
      "type": "modify",
      "old_id": "08eb53b627a6a82ed8458e83254270bae5dc852c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update2986102359662279142.mlir",
      "new_id": "e0d89f38d4743fb5be4601065f60a818b3dd5c51",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update2986102359662279142.mlir"
    },
    {
      "type": "modify",
      "old_id": "823f1c2c474c2f7060fed368763b80b8c60f054e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-4952504776566058822.mlir",
      "new_id": "4ce8f8815fc654581d38e7760578f963c5a63853",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-4952504776566058822.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f1f39837fd384e0ce8323c65721643e2d8f5d62",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim2796027074051456709.mlir",
      "new_id": "b741bb4220e6c3802f9ec6d320a99cc17093fcb8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim2796027074051456709.mlir"
    },
    {
      "type": "modify",
      "old_id": "d721351e01daeab4bec67e3dae8c12d793cc587e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-6311750605783993279.mlir",
      "new_id": "e44f35ef0d7dcf050f26d217776d17b2b6c9cce1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-6311750605783993279.mlir"
    },
    {
      "type": "modify",
      "old_id": "41ab7bb39225776f9bf2b7f6e8d9d492b1c5b254",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda4265363395406675305.mlir",
      "new_id": "a5fa03a551441b65611a4e5a307c41062a377b29",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda4265363395406675305.mlir"
    },
    {
      "type": "modify",
      "old_id": "cd2abca3c8a268ff01a7f9b8cc335b22a55a283c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-3203912789197849558.mlir",
      "new_id": "c5c009fd6b99f7184483aec35e6119adced77a32",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-3203912789197849558.mlir"
    },
    {
      "type": "modify",
      "old_id": "122f12a653477b56d6622c9cfd898dc9d9daf6df",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-3643129952740408905.mlir",
      "new_id": "fa7e6a2786e14a8397f4197b3ec11e801413d3de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-3643129952740408905.mlir"
    },
    {
      "type": "modify",
      "old_id": "d934dd433380f42c07f26579b72ae86fe727d215",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-8563111457028476801.mlir",
      "new_id": "61ef91a44b82ef73031493bc6f807ee30280bf9b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-8563111457028476801.mlir"
    },
    {
      "type": "modify",
      "old_id": "9cd02bed2b5484f47d0f83a4ac5d2f582e6273ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_74870609094287397096.mlir",
      "new_id": "4087f7c0317f9df51d4d8876b5c42986baed2e86",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_74870609094287397096.mlir"
    },
    {
      "type": "modify",
      "old_id": "f57ae8e280972d32299cfe3a10d58033d926c5df",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-759744508599333163.mlir",
      "new_id": "2423abb4a62cabec26ae60316b83eb4ddd8102fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-759744508599333163.mlir"
    },
    {
      "type": "modify",
      "old_id": "c666046d4aa8bf25b22ffb9eec58b50ed1613188",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____1245777998526320213.mlir",
      "new_id": "e8da7ee5c4ab842d47cf369df0ada6a39926d50a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____1245777998526320213.mlir"
    },
    {
      "type": "modify",
      "old_id": "434a30e6413b5af18936a58aec22181c808b3316",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-4249322870906831285.mlir",
      "new_id": "1852f4d9ecee7dad876946162c6d587797e0d5e3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-4249322870906831285.mlir"
    },
    {
      "type": "modify",
      "old_id": "c985b6d27bd2d7a1be2197a6d1ac5134398487ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-6156631391951242845.mlir",
      "new_id": "0ce32ac7966a53c5ef489be53193298aea787d09",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-6156631391951242845.mlir"
    },
    {
      "type": "modify",
      "old_id": "72a0f1453fc9f8020693eae4213b859719b54ed9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin-304007529601890135.mlir",
      "new_id": "537bae09b1c8d81231bbe280bea9d0b245d288af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin-304007529601890135.mlir"
    },
    {
      "type": "modify",
      "old_id": "0b6f731b90c643fc66e382ed3ae535846a3577b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin455400941778422949.mlir",
      "new_id": "c1a0138665ce3daec1e6707cb5c78eef502ae8f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin455400941778422949.mlir"
    },
    {
      "type": "modify",
      "old_id": "c3359ccc6b3bcd0bdd2db4d01e6483bb1d747955",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-8477777432015844399.mlir",
      "new_id": "d617ed130d91babeee90d70658e4bb88706b8908",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-8477777432015844399.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b9f4898889f894dd54f8cbad43e2874894a358c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi7074773785138082609.mlir",
      "new_id": "badb276d061b6dcb03d9ae800475cc218d72cbfc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi7074773785138082609.mlir"
    },
    {
      "type": "modify",
      "old_id": "4e981399a2be951f06c8b1a7ef76c0225f992315",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-8612627503936106700.mlir",
      "new_id": "a83847b81f96d8881270255f1cd3c2f983415d76",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-8612627503936106700.mlir"
    },
    {
      "type": "modify",
      "old_id": "d6026e46f9cd003980dc1cb76c437393af8b1409",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-9153118378468889125.mlir",
      "new_id": "8466732d861569e07adcb6889ecfce7ed1f0c091",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-9153118378468889125.mlir"
    },
    {
      "type": "modify",
      "old_id": "232a9b88afcee4b109cbee1c8c001616c96e5c1d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi5782516177151935046.mlir",
      "new_id": "b01d02ed7ced39fa5f7d6681b33a9adb2b2bb2d5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi5782516177151935046.mlir"
    },
    {
      "type": "modify",
      "old_id": "b0c6420ae1949285f53d1456a5bf9c3c5c115fd4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi9041188103475055130.mlir",
      "new_id": "59f99b4ecdd19d92b9961ef22bbe2abe60d3724b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi9041188103475055130.mlir"
    },
    {
      "type": "modify",
      "old_id": "37dd19a7f4d4502893895818c407905ed08ae2b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew1689752114083955572.mlir",
      "new_id": "fd02c9f8a8c141d963d941ef8fe1ab41dcce0efb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew1689752114083955572.mlir"
    },
    {
      "type": "modify",
      "old_id": "c3a0f0dc6662fe6ec096d01368a48dc6bb651f74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew8693638238679832728.mlir",
      "new_id": "f25246a620db37581bd6a858d11700af43be4ff8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew8693638238679832728.mlir"
    },
    {
      "type": "modify",
      "old_id": "afce17923c86c76be09d8c4d16b37013d68445f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-4551395605147325529.mlir",
      "new_id": "4a1f26ebb05cc08bece863934ec1f034c95cf0a2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-4551395605147325529.mlir"
    },
    {
      "type": "modify",
      "old_id": "e221c0ad4b7318ba56438ca74de1038d514941de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi7730408894793448812.mlir",
      "new_id": "5709f51b478320574619213dba85225ca59d3362",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi7730408894793448812.mlir"
    },
    {
      "type": "modify",
      "old_id": "9341b5ec50231bb9377738d595e35c4f1dad0027",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update4174760181820348577.mlir",
      "new_id": "eb3d8098eefd1edd5fd88a1161acb2b7aae55079",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update4174760181820348577.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a6c5fc18bfa4dd16d2877ece4cd3d17be76a16e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update7900894070573682987.mlir",
      "new_id": "0cf7c9eceecdd2d9bdac3dee0e92428aca9797d1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update7900894070573682987.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c4bd59f3a1b222248e82799d1db804c5372c2aa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim1751609735067905465.mlir",
      "new_id": "cb1d551c64565359c1d7d0d2434c8c427bc31432",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim1751609735067905465.mlir"
    },
    {
      "type": "modify",
      "old_id": "1f6e1f3399a03161eefa384c662654b6d8d3f9f7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim5673305870149119583.mlir",
      "new_id": "d5b5c0e992a8df29f4a7418fa2ebf1fcee8d26e7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim5673305870149119583.mlir"
    },
    {
      "type": "modify",
      "old_id": "ffb5bfba285a18cc34776000f4dd6c77fd7ce58d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-2469456288279167158.mlir",
      "new_id": "814289876853ca44040b8b47c557af8e5fa4bfaf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-2469456288279167158.mlir"
    },
    {
      "type": "modify",
      "old_id": "f91091b3ae95430ed9310b9561bc85dc5cc71a48",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda4342698834420844442.mlir",
      "new_id": "31e5c29587fb3c277a657b3ba6d46424e657d8c9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda4342698834420844442.mlir"
    },
    {
      "type": "modify",
      "old_id": "46cbfe8cd947cb153d5338b6ed5a351d9f65126f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew4175976412957549642.mlir",
      "new_id": "1dcd3b1770641b55a85f961563f91696e59403d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew4175976412957549642.mlir"
    },
    {
      "type": "modify",
      "old_id": "cadbf1dc463fb8c6c95afee67269036665cee274",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew5768555911120390580.mlir",
      "new_id": "99f9c0e1d640e174898f7e28b7f61c223a89758a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew5768555911120390580.mlir"
    },
    {
      "type": "modify",
      "old_id": "fa44c655e8229b26e00a92238fc5e81e41656342",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-1676888133310209796.mlir",
      "new_id": "b26c240a604d52ab07006597c5ad6062d2ea8e1e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-1676888133310209796.mlir"
    },
    {
      "type": "modify",
      "old_id": "45277554fc57c159364bb0f389f85348651c03df",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-4402240353080601551.mlir",
      "new_id": "26e571df453b624988df968d657c81e0a5837888",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-4402240353080601551.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f7e830e7a16a3a31ff978eb0a3f6de87cfc7f77",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____5697733633172945226.mlir",
      "new_id": "ae6dd8766931cdb8b41fcecc673474fb3e33738a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____5697733633172945226.mlir"
    },
    {
      "type": "modify",
      "old_id": "69c9acbf7ebbe56f8d6e0008ec7b691376ee7b3d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____8934238829712448896.mlir",
      "new_id": "92c35920332b164e0d9bf7cff33d486bb147ff9c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____8934238829712448896.mlir"
    },
    {
      "type": "modify",
      "old_id": "32b7cfc094071ad46d00839959aa2f495dd2df0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh3554705983460704021.mlir",
      "new_id": "6e9c9ccdff3ca30042d0598e81768f00fdee4552",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh3554705983460704021.mlir"
    },
    {
      "type": "modify",
      "old_id": "8d6bbf86b0e9f4ba19d8611e69df23f2cd8efbdf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh6790731219354090899.mlir",
      "new_id": "e7d48899853bef4f64fa3bbe14f4c78267d1bf19",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh6790731219354090899.mlir"
    },
    {
      "type": "modify",
      "old_id": "e390e38c95973bd6a3429e471df482e1434c55f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2839844844000946233.mlir",
      "new_id": "0ba3e41081627e5d2b899402e1b0abecd8b17c7b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2839844844000946233.mlir"
    },
    {
      "type": "modify",
      "old_id": "dee409c90fbd3740ac9d4e5440021bbde7d922de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo4691533306572779958.mlir",
      "new_id": "50e71ec4abc3cb95677c36e3b2b8c0f1a40bea9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo4691533306572779958.mlir"
    },
    {
      "type": "modify",
      "old_id": "992c9529074fd2baf63d85df6db01e349ddec64a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4922517182425747675.mlir",
      "new_id": "c49339fca89b7613c5173cd3c4b1b873c2164af2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4922517182425747675.mlir"
    },
    {
      "type": "modify",
      "old_id": "5d31575acd776d3c06fd153a8ade4c9e794e4572",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind1681211343400286627.mlir",
      "new_id": "ee4d8c9bf432bec6d5000854963634f811a8e119",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind1681211343400286627.mlir"
    },
    {
      "type": "modify",
      "old_id": "002d5d1d7514fe5b3e70a77130768060fd22dfb7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-420922130789298176.mlir",
      "new_id": "6ef07faec1fb15bc5ce5845c867c6e04f3ee019d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-420922130789298176.mlir"
    },
    {
      "type": "modify",
      "old_id": "489a7b9cb1b96b72220c04c194057212f5377dbe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-4663183835276024253.mlir",
      "new_id": "ce86f18ae48f40672b8a1a8288d42a6843eb50e5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-4663183835276024253.mlir"
    },
    {
      "type": "modify",
      "old_id": "9eea932ecb953ccdcd28f689c703325fb8231ef8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5816799921830533789.mlir",
      "new_id": "919f45dd0d3931c2b6989dfee35ca4eed7211230",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5816799921830533789.mlir"
    },
    {
      "type": "modify",
      "old_id": "c3179b2e403776827e127f9f9a7ff15f1ecf5c1f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-887253207283244392.mlir",
      "new_id": "a52eb769917e1f67443c4ae1ba14b441b79107a4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-887253207283244392.mlir"
    },
    {
      "type": "modify",
      "old_id": "72197cff21141af026dd96c4060a98c99eab6b02",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-6105746935257438539.mlir",
      "new_id": "e45826a7eb032a3f469c8a45d23d4e1bb0083a49",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-6105746935257438539.mlir"
    },
    {
      "type": "modify",
      "old_id": "71f7e1daed1d6085766965af7b6087e9acfd3214",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin368283231402400784.mlir",
      "new_id": "77b1360a5b932ba182cca760211d371ef4ed8552",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin368283231402400784.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a337dbb873189fc51afe90f7d400cefb3773f84",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-4833649072894316135.mlir",
      "new_id": "6b6cda0c97ccad602b97a682d06e06acdc8847d8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-4833649072894316135.mlir"
    },
    {
      "type": "modify",
      "old_id": "2fc1677769554d6944d8679c06741b90d4d958e9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-7325755528902790593.mlir",
      "new_id": "53ddea44cb3f9ff86cd66baf1caa4ade685dc4b6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-7325755528902790593.mlir"
    },
    {
      "type": "modify",
      "old_id": "f181897cd72f4341ec1c4e3188cd7cff769b7e1e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-9172264402326490364.mlir",
      "new_id": "7b5285090a586eab99851717597f46cc939d011a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-9172264402326490364.mlir"
    },
    {
      "type": "modify",
      "old_id": "7b0324547f4a9529699e07dcf4faa10d3534053b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi5722805357516891196.mlir",
      "new_id": "e6af7b11a65a396dbf3f14557718cfd76acb4fe4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi5722805357516891196.mlir"
    },
    {
      "type": "modify",
      "old_id": "6d2fb41db9a954a16141584e71b41d3653afc835",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_3934064707146790949.mlir",
      "new_id": "5a42c257d00be98beae20e6144f3a79c8d828de0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_3934064707146790949.mlir"
    },
    {
      "type": "modify",
      "old_id": "795deedd71b63ac451196e185045dda33c6baaa9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_8679781641694982610.mlir",
      "new_id": "2ff535fe482f6809c81088b7c9427c19d10b8464",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_8679781641694982610.mlir"
    },
    {
      "type": "modify",
      "old_id": "faea5811b8d41f6f48f272081bdba4cdbd93a63b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-8619458148601629175.mlir",
      "new_id": "bc9c8d1d5d0f083d79934e567048173517178bdd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-8619458148601629175.mlir"
    },
    {
      "type": "modify",
      "old_id": "28327ccdef6ddcfe57d52acdd4a1c7d98df7a10b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update1072636734502228327.mlir",
      "new_id": "e522fe1ca88fbf92ee1c2f1f57f3411c48e7a3b8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update1072636734502228327.mlir"
    },
    {
      "type": "modify",
      "old_id": "39f180a06eaf55d8346a90ed5e82830280b5794f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-2373040689244975897.mlir",
      "new_id": "394de4c3201e30bebb13d64d7fc7d4135d927c87",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-2373040689244975897.mlir"
    },
    {
      "type": "modify",
      "old_id": "ebbcd51902c35fbbfa4394b41f3a474ee0cd4bb3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-7039533867993701.mlir",
      "new_id": "ea033a6bfc8c9ec28e7403a16b056643bd91acaf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-7039533867993701.mlir"
    },
    {
      "type": "modify",
      "old_id": "6080b7c65845844f06d8080a9db4209ece580f96",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-5273540091416886440.mlir",
      "new_id": "78f9a88f8840598e5f27a45963819cd2357a4867",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-5273540091416886440.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d594fb444c5aff9b67303c86d5db7c105de6880",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__520632053864570090.mlir",
      "new_id": "0987b2b16d62f24221cb1feaf98de1af1a9765d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__520632053864570090.mlir"
    },
    {
      "type": "modify",
      "old_id": "a98609ba4a166afe65a3c918c88b136cac6d4411",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-5623848772288331181.mlir",
      "new_id": "a1a9e5af6bd8ac5ddb75105b0cd32652d088c6ad",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-5623848772288331181.mlir"
    },
    {
      "type": "modify",
      "old_id": "19e790182e75185e0cc0f4bdcdceab12d97002a2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up500212622559178017.mlir",
      "new_id": "921361a4a1bef10cd3cf02883b3ac0fc76b04533",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up500212622559178017.mlir"
    },
    {
      "type": "modify",
      "old_id": "fcf6f94c02a72b23ae744dfaf0c78f7253553d7b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-340960696335901665.mlir",
      "new_id": "50159ea0956dd9a267e42f7675f4e2f0472c371a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-340960696335901665.mlir"
    },
    {
      "type": "modify",
      "old_id": "aa4dbdccdef44a0f7503104009e90c9c19f46637",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-7634999522019619612.mlir",
      "new_id": "1e97a80afae9072193356561492b6fd45d8d9c1a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-7634999522019619612.mlir"
    },
    {
      "type": "modify",
      "old_id": "ecbfb5b4b7cfe011a0ac6d698c9e484fd390de50",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-7971939317121945253.mlir",
      "new_id": "df5f9332a1bbddd4ed27a69c2241d5c7d53d260d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-7971939317121945253.mlir"
    },
    {
      "type": "modify",
      "old_id": "50d60f02099cfa8f4ab39964c45bfd463ecca9a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo4095517369750484142.mlir",
      "new_id": "7917b2a98ec56489c7aebb8cd5219a3f91e736c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo4095517369750484142.mlir"
    },
    {
      "type": "modify",
      "old_id": "5bb118a3acc23d2608bcd191a414e6c0e1f915b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind-3312424635250872014.mlir",
      "new_id": "11073643a07df7b5f50df16df821eb9648be9060",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind-3312424635250872014.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f138fcfed9e82ea58d5ecf0b9bc135b3248f5b2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind139215505656195790.mlir",
      "new_id": "10fd253003ef9fb014f0a04effd4b80a6b5c6d4a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind139215505656195790.mlir"
    },
    {
      "type": "modify",
      "old_id": "c794d08b66ff76a850f68f6eb0a5d3015d356b1f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd7342322526435903367.mlir",
      "new_id": "e998298792d94f7bd4781ded962669fdef000cac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd7342322526435903367.mlir"
    },
    {
      "type": "modify",
      "old_id": "38f098fc44c5b0e3130a5543ae882a84d366c400",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd7553302737739030242.mlir",
      "new_id": "7430ad4fbc56e8dc4c3880a3a58601f9fe122780",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd7553302737739030242.mlir"
    },
    {
      "type": "modify",
      "old_id": "87a980dcd812fb0bdf127da55408c7c55a1dd08f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5394744753228806123.mlir",
      "new_id": "09014b314cce6490985cc930b6d926b2754ff058",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5394744753228806123.mlir"
    },
    {
      "type": "modify",
      "old_id": "46774d166956e903d31d2c22735458c5b6fd894a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind3630342298095974182.mlir",
      "new_id": "407039f54549007d1966b542769b2baac43b9f93",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind3630342298095974182.mlir"
    },
    {
      "type": "modify",
      "old_id": "3017aceccefd344f9f8b48c242f86588331058e0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin2110578568797174599.mlir",
      "new_id": "fcdac73ee36e03d79f9f901ff0b8655dbd0e915b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin2110578568797174599.mlir"
    },
    {
      "type": "modify",
      "old_id": "265e1ff9860e837c6caabb422c45ea9f43e3405a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin309107136629663177.mlir",
      "new_id": "df6bb07f6d7e51db53077cb9b82f7b73a6013d01",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin309107136629663177.mlir"
    },
    {
      "type": "modify",
      "old_id": "c88eeceb355ffde2815432f126b48c7611a5935f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind6204710529394502514.mlir",
      "new_id": "f54dd1af0ec4822866d472c1bc7b54110b404a89",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind6204710529394502514.mlir"
    },
    {
      "type": "modify",
      "old_id": "b6cda7114c2ddf4768e9765a040db03501ed4965",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind6271891592308477634.mlir",
      "new_id": "636ff6b3346f485a22256fda4e72421a248ab894",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind6271891592308477634.mlir"
    },
    {
      "type": "modify",
      "old_id": "40326f8dad920b89ad5cc6205ba94772fd9b6b16",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1127081133223858940.mlir",
      "new_id": "0c3ea0d47c3afcc6f2180501da39d04b205d7642",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1127081133223858940.mlir"
    },
    {
      "type": "modify",
      "old_id": "fb9a234b1266f63e0970181e587d031f3863ce9d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi1698984474341869219.mlir",
      "new_id": "f83407f6180d2362a32bf83878c9e34f71689fdd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi1698984474341869219.mlir"
    },
    {
      "type": "modify",
      "old_id": "29855288e860ff8f9cd367ddae86007422cf5815",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-6540378403077330570.mlir",
      "new_id": "16fbe662f12a22f2d75f77f400d595b3fc58dee3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-6540378403077330570.mlir"
    },
    {
      "type": "modify",
      "old_id": "eb60a6a1ea7c5c2cf23cf24040a8d198122af012",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-7397243544293713443.mlir",
      "new_id": "8d80df9eb4e2b874f1d1787791b118da46d8114d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-7397243544293713443.mlir"
    },
    {
      "type": "modify",
      "old_id": "4267100ae0edbd8478abcd4c67c87d19801f4a56",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-10712058622206155.mlir",
      "new_id": "ccc2a42a444190f9a7e051e60aaa0231d4f54ddd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-10712058622206155.mlir"
    },
    {
      "type": "modify",
      "old_id": "a83736474bcbc8bff0411f2065f3a89b6b643f26",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update2550571537627097938.mlir",
      "new_id": "bb673ba57e9cfa5e008df8606830fa965a36752b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update2550571537627097938.mlir"
    },
    {
      "type": "modify",
      "old_id": "b926f90e7adfbe6102641ea8b2bcf0d4df3fb6f6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin1479578082839246648.mlir",
      "new_id": "1d2ba013a0be26a1d89f663dc667f57d2bfd016c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin1479578082839246648.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a349f5d1d429be3d2af68e8c5a2c525bd42158d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin8686567596578332985.mlir",
      "new_id": "c9cad71d3a0ef8f9ae1aa90706b2f26d85232cde",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin8686567596578332985.mlir"
    },
    {
      "type": "modify",
      "old_id": "6411ae2512b864a7fc28396268a7d95ce93574d0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-4663429453766771963.mlir",
      "new_id": "f05a167e1fc41b04486e4b7f977be26986f0c314",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-4663429453766771963.mlir"
    },
    {
      "type": "modify",
      "old_id": "91dd8c64acf0a5c0c437d6b2a3845018a13d0349",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7181773669694201441.mlir",
      "new_id": "3eaff4441cffb07eeab231332ff23916ee03df62",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7181773669694201441.mlir"
    },
    {
      "type": "modify",
      "old_id": "21a8d96e5d2d2a51d82c93c1951167c317ba11e8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2238527862024472151.mlir",
      "new_id": "8cdadea4b13c06754020432a19ea073696ca2a7d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2238527862024472151.mlir"
    },
    {
      "type": "modify",
      "old_id": "0ee55c7a94847445da5586929411c7117eb01c46",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2970555778160149333.mlir",
      "new_id": "48ff31856b3ef25b44e4616446b66a8366faffc2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2970555778160149333.mlir"
    },
    {
      "type": "modify",
      "old_id": "5b9d458eb3e65b35f2ed03da19223511474218a4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap1715785822546040830.mlir",
      "new_id": "b4418218752fba1b353382fb3e6a473b655b20e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap1715785822546040830.mlir"
    },
    {
      "type": "modify",
      "old_id": "982a0d86c140a1a8e2d3badd1dd136c8cadd57b1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap6710213962241311232.mlir",
      "new_id": "b74dbe16d033dc080e86086273543d8543311f22",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap6710213962241311232.mlir"
    },
    {
      "type": "modify",
      "old_id": "705afd46f1d2ec1bfca4e3417dc3520ccf09140c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-5741837050715739462.mlir",
      "new_id": "1cc12f28d857c360f5d11515176e1495d6580cdd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-5741837050715739462.mlir"
    },
    {
      "type": "modify",
      "old_id": "e3c2557df4e367a3ecb56990ee459805f0460794",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow6124594656634777346.mlir",
      "new_id": "96fe672a0fe1139a293a00c65d3724f2bf179e20",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow6124594656634777346.mlir"
    },
    {
      "type": "modify",
      "old_id": "7944ef72c048748aa588bdd0c05afd7643921ea4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-8135371938509125618.mlir",
      "new_id": "260157158e7d95236d7bf39cb99cf70202ca5f22",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-8135371938509125618.mlir"
    },
    {
      "type": "modify",
      "old_id": "14d20ed0a0983f78c3edf474e36e1a42beaf8713",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo7417675200334150160.mlir",
      "new_id": "28e18202784d1e47dc36b48d02a53902f80a0d39",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo7417675200334150160.mlir"
    },
    {
      "type": "modify",
      "old_id": "beb34b72b996b45753eef6e23e548c53b97e34c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-4489868158232826085.mlir",
      "new_id": "e27e93e82e0097857b90f2deff772f7ebc36c012",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-4489868158232826085.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2d0318dabd055b571f4642126f5ecfc4bb9ddc8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-5808469219638001439.mlir",
      "new_id": "219ff54ade7176f9f7bdcfa86b5f4c7ace2e0d71",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-5808469219638001439.mlir"
    },
    {
      "type": "modify",
      "old_id": "efae665a4cb2418098b3da34dfe9f0451819ee38",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-5441909635197723241.mlir",
      "new_id": "5d7e8242f5736d8fd7c4b5944eb848671fa8b6a4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-5441909635197723241.mlir"
    },
    {
      "type": "modify",
      "old_id": "8578ede883cb8bef5ee87f2cd12f45e2acbd4266",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-6720695980401733509.mlir",
      "new_id": "d3d291e3e90e51a13711cbf04bbdacfe2ec8b32a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-6720695980401733509.mlir"
    },
    {
      "type": "modify",
      "old_id": "9112e7d181f38124f55d43920ae7ae89b0b911d4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-2808008445529984142.mlir",
      "new_id": "7dc1f1cfac75f208a940a1aa301a7e6704eaeed3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-2808008445529984142.mlir"
    },
    {
      "type": "modify",
      "old_id": "f297b99b82d9d660c33d9db4f83efce2146f812f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind4987595175184550066.mlir",
      "new_id": "e0d4f40fa4d3ccd8ae84a88802b4c9fc8b30bdc7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind4987595175184550066.mlir"
    },
    {
      "type": "modify",
      "old_id": "48b7f172188d6bdca4a3f1b15e998a648100cd11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-1784469910841869456.mlir",
      "new_id": "5ba5f00efd4bde39cdc601428925222ac4583d47",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-1784469910841869456.mlir"
    },
    {
      "type": "modify",
      "old_id": "5111d560dceba8d7a27a6657ea03d4aedabf3aeb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo7538936333147709933.mlir",
      "new_id": "3556f7e6fc4c775b3ee70290e9cd66527910d428",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo7538936333147709933.mlir"
    },
    {
      "type": "modify",
      "old_id": "66322df015e245cb703eca60508d823b12400eaa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin1508955844563568818.mlir",
      "new_id": "5409f3e0fa84d022a6145c699214ecca3caac81b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin1508955844563568818.mlir"
    },
    {
      "type": "modify",
      "old_id": "97c6ba8bb3ae868f8f9231bb835cb6a6bfeee1f3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin6067048107147913826.mlir",
      "new_id": "f1d187366cc0cc6201d506545c5ad13a0cdb75ba",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin6067048107147913826.mlir"
    },
    {
      "type": "modify",
      "old_id": "e1e3d79b9101021ff29f09203df95af23e495015",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-5061474144088218377.mlir",
      "new_id": "e7a87681a4318a9a9b738534a42594f605618fc3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-5061474144088218377.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7efe54acac34af92420fd03e10d3f5841511c59",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__7419933209394456505.mlir",
      "new_id": "8a4a98e191c585e628cf7a7a2d9825c27f9a4f8f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__7419933209394456505.mlir"
    },
    {
      "type": "modify",
      "old_id": "e64345dbea0ae5e39400a1fafb721d9fb6f0ca71",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-475177265581722258.mlir",
      "new_id": "f727253e866615cb1c1eb39fd4b83db1057c653d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-475177265581722258.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ac0ec7dfd324ac5994b9ff5f06d02a70ab52e9b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew5568489650471049080.mlir",
      "new_id": "63eb29a63fc6ac023b9c991b8952145b178adbf9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew5568489650471049080.mlir"
    },
    {
      "type": "modify",
      "old_id": "57122f0237aa9f8df914acd67f41c1376b6740ef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-8611891650160216261.mlir",
      "new_id": "690910c6b51d9c72a4a4c217eb2c56e7dcb9a08d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-8611891650160216261.mlir"
    },
    {
      "type": "modify",
      "old_id": "6b70aff130d875e1a6a21a1a1f63e12d94d74fef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind6985804078066516697.mlir",
      "new_id": "31931d0699bd5db30ccc4ad55ce047b7c2ae759a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind6985804078066516697.mlir"
    },
    {
      "type": "modify",
      "old_id": "5c519029c819eb833b5d12f76f776939c72799e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u3771363404680848958.mlir",
      "new_id": "db93c6323fb82305af1ea533c3a5bfb73bbb49fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u3771363404680848958.mlir"
    },
    {
      "type": "modify",
      "old_id": "49d473f0e07737f74bd5a08f55763f6f5c208586",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u808523439608182752.mlir",
      "new_id": "3d1ea22c91a75c487b855ba4af9f398a3ebab7d0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u808523439608182752.mlir"
    },
    {
      "type": "modify",
      "old_id": "021cd757dbab15b242d8bfddb466486d94b52c17",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd6531262831845641784.mlir",
      "new_id": "0e7aae3944ce3cc7b51ac3ff04e378f17465fa27",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd6531262831845641784.mlir"
    },
    {
      "type": "modify",
      "old_id": "ba721a24aabca4e27dcc9824487de2ce177704b4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd7351713410321533699.mlir",
      "new_id": "82f6a8a553ce45acc64662f6b03457d13ebf6719",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd7351713410321533699.mlir"
    },
    {
      "type": "modify",
      "old_id": "492445e0ecdcfaf3c79fd08c61f7f7eeb6bf81cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape3968639201026952742.mlir",
      "new_id": "08ee7b758b8184e35ac4eaaf9c3b03f30ebe3a83",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape3968639201026952742.mlir"
    },
    {
      "type": "modify",
      "old_id": "9f1389d303b2494739fb218bcbe1d07302d1078e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape6792664875203398695.mlir",
      "new_id": "8828398c9cd40ad688d4e9b3fa342cac87cc1405",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape6792664875203398695.mlir"
    },
    {
      "type": "modify",
      "old_id": "009a7aaf4e79053da1a9f689c751206ff6875941",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-2355530058007938589.mlir",
      "new_id": "3e2a79939399be2bca0dc9fe72b86d519cec2759",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-2355530058007938589.mlir"
    },
    {
      "type": "modify",
      "old_id": "c9d92bd618037e01c04b65d1c147dbb9305cbe67",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind5899607047074806462.mlir",
      "new_id": "5759094412ed130e0e02460ee4edbb60c9064f04",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind5899607047074806462.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e2fb032c10d1475f8a57e24e6b5fd156aa018a2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin4255143736696256140.mlir",
      "new_id": "f74eb125dedf25af5c698e6742120fa79721d18a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin4255143736696256140.mlir"
    },
    {
      "type": "modify",
      "old_id": "351692257eb792e69b96b612c282266e0e99a5cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin5355292897265078190.mlir",
      "new_id": "470680b641c9630cd31ed131629e246b26414a9a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin5355292897265078190.mlir"
    },
    {
      "type": "modify",
      "old_id": "db0d652e9f045f40b05f2c51fc1d628f916338a8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-1865959740833351532.mlir",
      "new_id": "ec9f0e471d685925de2680801f0060a70df8d201",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-1865959740833351532.mlir"
    },
    {
      "type": "modify",
      "old_id": "2c88909f61cb6b256accad5b017d9e0ab503a92e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow3224571850859326572.mlir",
      "new_id": "695519b4023a70380fc1d609cad7fe43ff548c91",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow3224571850859326572.mlir"
    },
    {
      "type": "modify",
      "old_id": "cccbef043f4c126860bca6308458d4372ac392e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin1928081368629774964.mlir",
      "new_id": "176525bbaab9a4826ca2e6ca426ea03e11f784e2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin1928081368629774964.mlir"
    },
    {
      "type": "modify",
      "old_id": "60e5eb0a84a120909edc98aa2f8c214648663687",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin6027022332699736532.mlir",
      "new_id": "8c5b78236151f9c7eec285c4ccdcb7e2f069adab",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin6027022332699736532.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ebaf1cda386af7d56dfe165d1a7410c356d40dd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi222960814350783234.mlir",
      "new_id": "e3ad43d50c66eccdd0ccb4e6fb8e6f5c456c7334",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi222960814350783234.mlir"
    },
    {
      "type": "modify",
      "old_id": "2448abf8e49bff74f06dd05e4002e832dc8a2bd1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi5126588181291957161.mlir",
      "new_id": "672a3b2209b090aec1d8a9c3fdfdcbc911d7a9bf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi5126588181291957161.mlir"
    },
    {
      "type": "modify",
      "old_id": "f4a4503fb6ba572704948765552dd586b0075577",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7804651276816942207.mlir",
      "new_id": "5fb0dc570b3cac1475ad92494db94da4d1bc57ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7804651276816942207.mlir"
    },
    {
      "type": "modify",
      "old_id": "d2b23437424d9dca3165bc36f5997feb68e41cea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7981612942392985245.mlir",
      "new_id": "806ae36f142f62f56dcb506323f46f713b590c0d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7981612942392985245.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ac28d6745d3d142af84969572db4dbcfe3942bd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-4754160280417932241.mlir",
      "new_id": "731483cfe5281d50bf5097c82554dc98352f067b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-4754160280417932241.mlir"
    },
    {
      "type": "modify",
      "old_id": "67f99f4af721263e3f5c5a3a414d00608fc1a8e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-8872713435005673417.mlir",
      "new_id": "a2e325d3210a8c669131538bc697fc5492c69057",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-8872713435005673417.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a172a1224127724e17b5b80322d934570072bea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims4804912606649857802.mlir",
      "new_id": "8ddcaee2685b1e7dedc10fae404027392e0e685e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims4804912606649857802.mlir"
    },
    {
      "type": "modify",
      "old_id": "100ed239baf3d18c271ad7473e7da670e7a45f47",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims7558386364215168783.mlir",
      "new_id": "8fc85a0b4847cd09d2dc913ffa26d237b42dcbb8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims7558386364215168783.mlir"
    },
    {
      "type": "modify",
      "old_id": "075616de0bd70505895ec525413fa06b7eb4f461",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-8274419980979350893.mlir",
      "new_id": "e6619cf3afd728d83a14ae5c550f8fa05ce7b8c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-8274419980979350893.mlir"
    },
    {
      "type": "modify",
      "old_id": "ef91b3abaa9d8493f174372006cd48ca92a5f388",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1709061966807053836.mlir",
      "new_id": "1f0294613826f1ef45c0e039a83c48ac110fdefd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1709061966807053836.mlir"
    },
    {
      "type": "modify",
      "old_id": "c9173293822a0dfcd3a7468d1856b0dd454c85d5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-6073099928643051906.mlir",
      "new_id": "d563b14d812d5eeb97a5e6980923b04f314c9c2c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-6073099928643051906.mlir"
    },
    {
      "type": "modify",
      "old_id": "ac6af3a52b067792e03caa9d2600d05e8ee67b89",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi8179654881998250566.mlir",
      "new_id": "26a4c0665ba0664ad6e00c937d1c6a176fa62f75",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi8179654881998250566.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e48c6b6a9a4b0eff83af77e09e34835892b9bef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4324625212547377416.mlir",
      "new_id": "cf6b8dc2a94b2e2bd63bc91116d001467d99c862",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4324625212547377416.mlir"
    },
    {
      "type": "modify",
      "old_id": "ceb97251c44e87b6354e1ad630fc93c1ae30015a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_492152019281825947.mlir",
      "new_id": "a36b5cb194e2bac78d1b0b6181942621b1252ea7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_492152019281825947.mlir"
    },
    {
      "type": "modify",
      "old_id": "5987e6cfb7d78c2cd4baaddeb0cbad793ddd8ef1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-5201943969373002426.mlir",
      "new_id": "8b12f7a4562b5c26e32c0a559836cbb6f3726824",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-5201943969373002426.mlir"
    },
    {
      "type": "modify",
      "old_id": "c20d4afb158202b3c06285dc976f0bf9c98ca8bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8141856249510461351.mlir",
      "new_id": "354a17137d6b8c1e5946a2093fd7eb785f566670",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8141856249510461351.mlir"
    },
    {
      "type": "modify",
      "old_id": "91c2b21407616c7f709fe4d006f8b8cf8243dacb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-5032991910029426792.mlir",
      "new_id": "6e731b3160c57ca06f3a06751a0c882df67e5914",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-5032991910029426792.mlir"
    },
    {
      "type": "modify",
      "old_id": "9e5e04bdd426eee9efe32a3ccad6f978a41e8bab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-7026742454312175741.mlir",
      "new_id": "e83fa5157e36f75afac593ab0f460649567a8e39",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-7026742454312175741.mlir"
    },
    {
      "type": "modify",
      "old_id": "1f3e2ad7da9f74c8b7dca7c4fdff575773ec5f31",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-2493932993191221377.mlir",
      "new_id": "c564470a63173ad5db3b9a1936feb4c8e8ea8a98",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-2493932993191221377.mlir"
    },
    {
      "type": "modify",
      "old_id": "826586e1b3bb11b66d2c2a11fb00a3fffdd61c56",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-4727333056025903092.mlir",
      "new_id": "96687a875aaa18322d3836b6a2dd47d683d3906d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-4727333056025903092.mlir"
    },
    {
      "type": "modify",
      "old_id": "dfb835add128c127dd39df799df3305ad6e8529b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-6232381483023765460.mlir",
      "new_id": "c728c4aed9b06aac26233108d132adc811341619",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-6232381483023765460.mlir"
    },
    {
      "type": "modify",
      "old_id": "bf408b27d003e2289c2a8f2740d3daeffd9899b0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin8781756429572856750.mlir",
      "new_id": "1733cd7027575e16d26fea0bbcde2c23f1b2675a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin8781756429572856750.mlir"
    },
    {
      "type": "modify",
      "old_id": "decf20f10bc0d493cff3b218e2aac0ce628cc32a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow5934522417062545132.mlir",
      "new_id": "a16c6fca7e6b08d1be7ed1e5cbefbf98882b3a4f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow5934522417062545132.mlir"
    },
    {
      "type": "modify",
      "old_id": "343953f5f71dfecac7824d4fcc7be6b02daeb96a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow868296633592529009.mlir",
      "new_id": "253867cb5cdd28964fbf3ee1f7176debba2e2ffc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow868296633592529009.mlir"
    },
    {
      "type": "modify",
      "old_id": "459cd30ea403ad150106cce924fa6223b18cf612",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-1641133002030508080.mlir",
      "new_id": "8f9022c2cdd3f84e3c72646eb1613ea829ef0014",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-1641133002030508080.mlir"
    },
    {
      "type": "modify",
      "old_id": "7cc184f55a939e407b4e16a5d84e41ac500195ea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin3285453687476766879.mlir",
      "new_id": "9ddf6b1e3e8abf95dcd8e19dc0ccd124598732af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin3285453687476766879.mlir"
    },
    {
      "type": "modify",
      "old_id": "a41f2d52a96b47c58c666fb5fc0a77f5ff9904ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-2627349516123329495.mlir",
      "new_id": "a3e33e78a01439c62f72eb8eeec38b0dcbf7bd2f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-2627349516123329495.mlir"
    },
    {
      "type": "modify",
      "old_id": "4167ff5515e09da5822f1505de188408ce8793a3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi5639421007566031063.mlir",
      "new_id": "8328b63f94d86ef0011c377ce1df4010784e7047",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi5639421007566031063.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7158c051774c6cd25d2ce3a764136a9d4eac4ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4024738447497901356.mlir",
      "new_id": "d8761e1060043048352807654a8594b9f27ce7a9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4024738447497901356.mlir"
    },
    {
      "type": "modify",
      "old_id": "48c2cdb4c108da77f1712de8b8dc832106f3299c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4196632273973579364.mlir",
      "new_id": "f7124905d45ac7d604fbf727c38f2d51de3db01f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4196632273973579364.mlir"
    },
    {
      "type": "modify",
      "old_id": "089c9dc15e96662803eccf5350b22fd55e54a2fe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-740047246519077104.mlir",
      "new_id": "bb5d679884cf9a2409d7ecdce57c3eb2f12b65ae",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-740047246519077104.mlir"
    },
    {
      "type": "modify",
      "old_id": "1bc350220e4c41adfcd572258907ee4507bde01d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew8128135906735836974.mlir",
      "new_id": "e45af2b2fa057902201c4218ef938efa25bae3ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew8128135906735836974.mlir"
    },
    {
      "type": "modify",
      "old_id": "605a502f7b5074ae890c85e3f4d1230f80174289",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims-8617825293348157163.mlir",
      "new_id": "a547cfe204f6b706e308328d7736fbf36107ec39",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims-8617825293348157163.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a81021af19c40eebb3664d450df235aec8a787d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims710391022991851600.mlir",
      "new_id": "9d2109d12a61453d2ce39fe3e1d3e5d953b5e42f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims710391022991851600.mlir"
    },
    {
      "type": "modify",
      "old_id": "ef683c8b5008435d9d42f835a6afee7764431f6a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6791897860392195051.mlir",
      "new_id": "ae3dd4a0efa9ddf41f107c5ca495cd82f0149750",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6791897860392195051.mlir"
    },
    {
      "type": "modify",
      "old_id": "83c72d3ec91129558717fb70cb6c28cb110592ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat7462471797269110173.mlir",
      "new_id": "a67bc91c1a6d2b2761cb06ca115e332ccf25c966",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat7462471797269110173.mlir"
    },
    {
      "type": "modify",
      "old_id": "a9a427a0f2c13798c65bfa5b212c3b1c7577ec19",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi1477502061111573603.mlir",
      "new_id": "7a3701afccc7e809ac67aad17916e2c7ee289b21",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi1477502061111573603.mlir"
    },
    {
      "type": "modify",
      "old_id": "13475910dce88c9812a5c03f2d64414485dff7f4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi58247371151849691.mlir",
      "new_id": "c9757d25bfa01136e69058c2b18164445b40f8e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi58247371151849691.mlir"
    },
    {
      "type": "modify",
      "old_id": "db18b3e1bc8b1e71606f130037e6a414a9b5ea37",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-2789322176808458196.mlir",
      "new_id": "37091ac4a70d863d87d81581f66cf5111943e6f5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-2789322176808458196.mlir"
    },
    {
      "type": "modify",
      "old_id": "83b04e040eaaa9261c5f69c2cf064e1cd536c65d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4274140649884019517.mlir",
      "new_id": "f9b028ca1fa30067e79209864270c55bad1648f8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4274140649884019517.mlir"
    },
    {
      "type": "modify",
      "old_id": "1640526cad8516e40b1bd71dc9d7b016d7e741f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-6441999524429153529.mlir",
      "new_id": "1c63fab84493c0adab3ed13ee1200e91394686b4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-6441999524429153529.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc9d7a8be4eb7c516ffa9504bdf5bab37fcb5c13",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8666094006939621915.mlir",
      "new_id": "68aee611094793cbf24c8a2e4c28eaec0db3c2e3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8666094006939621915.mlir"
    },
    {
      "type": "modify",
      "old_id": "90be545a2584c9dce2bb050229b388155a914dfc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-1250379279784296323.mlir",
      "new_id": "50ec55fa2f9840b6e96db9ca98020acb189319a3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-1250379279784296323.mlir"
    },
    {
      "type": "modify",
      "old_id": "bd5f7677f95017d1ed3259bff903c979045d989e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-2476939433263809573.mlir",
      "new_id": "eab9bf79b35a2cce0ebdbde734712b2b3fd656c9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-2476939433263809573.mlir"
    },
    {
      "type": "modify",
      "old_id": "3c74e299811e9365326f6ff6dec9f3629457e6ac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo2641506595458680540.mlir",
      "new_id": "02c10eb28084c5865f40b454b0f2e861fa831c6b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo2641506595458680540.mlir"
    },
    {
      "type": "modify",
      "old_id": "933fa006975a0f7cdb2906e63885b61c80fa8fa2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo534641495725659400.mlir",
      "new_id": "3d27c2a566a5fcdcdb8e91243b0a6472acf074a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo534641495725659400.mlir"
    },
    {
      "type": "modify",
      "old_id": "4530e77ef0f193bedec6729fd0691bb9d4f2b27f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind1604574441012752035.mlir",
      "new_id": "06d0f27195d2b3f04e73bee55126d1f41c5c7904",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind1604574441012752035.mlir"
    },
    {
      "type": "modify",
      "old_id": "ea7aea474cb93555cb809bfa340692ab2ec66c6c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind2731002153338747654.mlir",
      "new_id": "c7ab9afe7d0c186584b4524f11a95648457b7e5c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind2731002153338747654.mlir"
    },
    {
      "type": "modify",
      "old_id": "5182add7e5630532a821b5caabb00b7898b13fb0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd2284374715751213946.mlir",
      "new_id": "b27e8167ce1c254af3b2b81c2581faa0235da553",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd2284374715751213946.mlir"
    },
    {
      "type": "modify",
      "old_id": "59fb66722c2ae7f45580d5b11860c2071b0e38aa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd2505509251588462368.mlir",
      "new_id": "b5cb4392342fd560719274cfd4964ac2345e2f2f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd2505509251588462368.mlir"
    },
    {
      "type": "modify",
      "old_id": "1255fa71cf0a4381381f45cb772908cdfdbce4a2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3487018839623291285.mlir",
      "new_id": "c5e7b281ad900c18d8f5fa299abba9bbb5572a6c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3487018839623291285.mlir"
    },
    {
      "type": "modify",
      "old_id": "511b0e57c0ddcb9f5b9d64ba24ce3f467a1fa956",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-8604484497256600253.mlir",
      "new_id": "177acf776316049ee25edb47c9173838cf43a870",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-8604484497256600253.mlir"
    },
    {
      "type": "modify",
      "old_id": "1940ae4e8d8513d119a7f4fa93a5a864f578d510",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin1380415797906781469.mlir",
      "new_id": "f9b097d8f7679a5c54e40d20fb6846fd51cf6bdf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin1380415797906781469.mlir"
    },
    {
      "type": "modify",
      "old_id": "611469f0af8d9caa706ca82f31aba9e5c70db535",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin6374287187271323238.mlir",
      "new_id": "e91de28c49088d541f2bc0717dbf2f9f627d7ef6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin6374287187271323238.mlir"
    },
    {
      "type": "modify",
      "old_id": "b71980833deae6a91dfc357ead756b0e01a7e494",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1305194734761190035.mlir",
      "new_id": "c38627b57f159db7a78a622ba6565fcb0a2aeb9d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1305194734761190035.mlir"
    },
    {
      "type": "modify",
      "old_id": "b4f80f3f973f43b6988462a082e639348baad83d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind1678143756998009091.mlir",
      "new_id": "1c808ff02fcfe03b26e0edb580430b12794f8492",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind1678143756998009091.mlir"
    },
    {
      "type": "modify",
      "old_id": "e0a07dd4fb802f54ab6828d0664293cbf7882914",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-8078915839645359058.mlir",
      "new_id": "07a02fcc4326544c81eac34aac9de76974cbf613",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-8078915839645359058.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b44cd0f7a0f31b8e0009f7767179f376f3b94b1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-9185061050524067474.mlir",
      "new_id": "727657cd996875b6656bc0d3ce99f2a6d45816e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-9185061050524067474.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee0d917abd9e22ed611ed545fb76d92c6a51af92",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-4251074730763850716.mlir",
      "new_id": "4bf96cc0dbe99b8e621055ff45a75696fe3fb2d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-4251074730763850716.mlir"
    },
    {
      "type": "modify",
      "old_id": "82ca0c20f4eab6ebc3cfda062f342f8b3c4561bd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-6837146777463778467.mlir",
      "new_id": "84e7ec0740acb87ca7f1401719821c634834b185",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-6837146777463778467.mlir"
    },
    {
      "type": "modify",
      "old_id": "fc1d0cd821822f5b7d49988502f3a3449644260b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-2442629959164459302.mlir",
      "new_id": "44d26f937f47bc123929c97f63845383cd8b6fd4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-2442629959164459302.mlir"
    },
    {
      "type": "modify",
      "old_id": "2d3c9d49f1685d13b55f17ab381201ce33c362f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update252259578072299482.mlir",
      "new_id": "56f1f6a67941d8d9521c805d910c75a6bf74c439",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update252259578072299482.mlir"
    },
    {
      "type": "modify",
      "old_id": "c23c92fb4f5192adbfb7bc32db9cd74c4cd84e34",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin5304681254417113664.mlir",
      "new_id": "18bc94c0d85ae0ebc007f3534e7dcd5d1cc2e7b4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin5304681254417113664.mlir"
    },
    {
      "type": "modify",
      "old_id": "4924606ee00f9d44f76a71f01406850b0b66d873",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin8751159257015308632.mlir",
      "new_id": "3155ef9064d2cd167446a91c2066cbacc898ae27",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin8751159257015308632.mlir"
    },
    {
      "type": "modify",
      "old_id": "f21fdc3f91c0e5ea2dfdf4b2ad34f5dbe50437b3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__2224374599205381727.mlir",
      "new_id": "e861581948539f568db410b933df7d3cee8d979a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__2224374599205381727.mlir"
    },
    {
      "type": "modify",
      "old_id": "f18096ccace4d7759c01d1c6c2d290f1200d9caf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__3481253470408735801.mlir",
      "new_id": "fc7ee080108c815a58ee4bee29690a66404a3bb8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__3481253470408735801.mlir"
    },
    {
      "type": "modify",
      "old_id": "5f781be1ada61f319e53477d17878109685f17d2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2206320351948067066.mlir",
      "new_id": "16b86cd2862c9000cf034b1ce2a69107178afa9b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-2206320351948067066.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a840ffc774970263357e677ad62143040d881c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up6159067232391152621.mlir",
      "new_id": "0ccb44c45175ad43541ca69350d27b9ab78a950a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up6159067232391152621.mlir"
    },
    {
      "type": "modify",
      "old_id": "089d4cbc237a5336279426259c1f3c0e9067bb2e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-7004792914768066328.mlir",
      "new_id": "b5bd0c4257bd720e59010df81a8627a552ba0b5c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-7004792914768066328.mlir"
    },
    {
      "type": "modify",
      "old_id": "3daecd00a878e59e592730a051c41ebba4c88b66",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-8827782002690829532.mlir",
      "new_id": "e91d7ed7858b3dae178fecb777319a456859df2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_add_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-8827782002690829532.mlir"
    },
    {
      "type": "modify",
      "old_id": "8cf3e9422e2db90566b00dffca6d22fa54335b0e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser-2930277789604541476.mlir",
      "new_id": "9829c42bfccb8610cb8ac384390c69a35eeaa765",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser-2930277789604541476.mlir"
    },
    {
      "type": "modify",
      "old_id": "14ddf8bfb15cae7a3ac04ff192e3491341a49128",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____insertedw-7999209774018819546.mlir",
      "new_id": "d8bfb937e729250a8c007d930fdc3921d60c1844",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____insertedw-7999209774018819546.mlir"
    },
    {
      "type": "modify",
      "old_id": "843331477b9fda48c81e3806977e01bc280c4c61",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse360406677792545150.mlir",
      "new_id": "ad1bd0c5b42ac762a718314525cc57d973d64abc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse360406677792545150.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a15e34926a11ea8623aa7fbf3fc2e9901bb2273",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____insert-6208401960821428700.mlir",
      "new_id": "e34cc6bff1c70d44f07ddf2eee55ac327c14020a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____insert-6208401960821428700.mlir"
    },
    {
      "type": "modify",
      "old_id": "2cc0c21b9e77eb75cf9bd4b0bbdfb87945db50a6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____insert-8815115321991225803.mlir",
      "new_id": "5873b9fe42c38758624d169d372e74403c5be50b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____insert-8815115321991225803.mlir"
    },
    {
      "type": "modify",
      "old_id": "e43bd6f9ec6028fab43e6f0b1ec5b14c619d1c0e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted-279814041569566222.mlir",
      "new_id": "80c4c8eac25b961d90080b502cc3f0ab70aabc38",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted-279814041569566222.mlir"
    },
    {
      "type": "modify",
      "old_id": "375783f508cf9c3f43951e15decc2f6f843f9434",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted392539518372500492.mlir",
      "new_id": "f3930580264d18bf19c622e8971f562d9f8b7086",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted392539518372500492.mlir"
    },
    {
      "type": "modify",
      "old_id": "e6f9615d2933b95ea399c8266ec58382ae8715b4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____insertedw-8449960834207282352.mlir",
      "new_id": "35c060e4a45551dea54d7c8d873059d9c733cdcf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____insertedw-8449960834207282352.mlir"
    },
    {
      "type": "modify",
      "old_id": "f4bdcc4ebfe4d84c3060c13a7f049437b0a593cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserte2451184385895379567.mlir",
      "new_id": "1f088c64d9c89a540de93a4f6117ee5b2ea0e75c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserte2451184385895379567.mlir"
    },
    {
      "type": "modify",
      "old_id": "901b9a203570982a2d45f7e06d4355fbce9150ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserte-2961744518792924699.mlir",
      "new_id": "4fd61d105f7a7ce6ba217b804fc6f75658884e97",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserte-2961744518792924699.mlir"
    },
    {
      "type": "modify",
      "old_id": "c8be27745b4ec6e81e70fdddb04c764d8af4f154",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted1788240898021135728.mlir",
      "new_id": "fb7984acc912df0c46cfc81544eb310c3826b8de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inserted1788240898021135728.mlir"
    },
    {
      "type": "modify",
      "old_id": "03dbf6b435fc8978decc99f4f40b3861d06c9b66",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i-392861041873938592.mlir",
      "new_id": "b315aa59f6b7e9f03c13723c441003e974a64c50",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i-392861041873938592.mlir"
    },
    {
      "type": "modify",
      "old_id": "b36782d86efd46c8ed125de744a2762f56032e7f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser5683702453722149665.mlir",
      "new_id": "2f05d07c5ef586e760190ab9e52ee80e8c354d8d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser5683702453722149665.mlir"
    },
    {
      "type": "modify",
      "old_id": "bac3493f32306b4f907689a3903654879c4a0d32",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____-6396961326923825596.mlir",
      "new_id": "2a1ecc2d4c6ee3530254d43b8889cfe7898da3c0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____-6396961326923825596.mlir"
    },
    {
      "type": "modify",
      "old_id": "e91c5ed7109d7fb8added1be4dfd8616f7ecb260",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in1336689541491778229.mlir",
      "new_id": "9d110439d85f42580b4983b17fc5aee8394c27af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in1336689541491778229.mlir"
    },
    {
      "type": "modify",
      "old_id": "ff0f7c56d418c0150392b90f961876868d9dccb7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in5989306877217321302.mlir",
      "new_id": "9f1f6151202630146e9a66e1779217c63bcead8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in5989306877217321302.mlir"
    },
    {
      "type": "modify",
      "old_id": "5d812376a32b8228a777315a163324d4326efab6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-5829043612105941797.mlir",
      "new_id": "19f514a49a2377aeedac1a9884663a973b3e4474",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-5829043612105941797.mlir"
    },
    {
      "type": "modify",
      "old_id": "e9ef0ea153c04b4ecd9a33ad23c2240fef3b2118",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse2177675569692235609.mlir",
      "new_id": "920c01eb27c1c608ed2f5f4a7ab0ddaedd5d00f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse2177675569692235609.mlir"
    },
    {
      "type": "modify",
      "old_id": "059ebf434ede4ad58d396b940b3391ade4607fe4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser2469995342507633075.mlir",
      "new_id": "f0d055db8bb777449071f3be02082e8acdd52d94",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser2469995342507633075.mlir"
    },
    {
      "type": "modify",
      "old_id": "f107274762c149fdd139ac4dc8b8706410bddd47",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins8815963655942062891.mlir",
      "new_id": "cb4c1a85e123f718f2d1c7a6c0135c1c8dbc0e5d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins8815963655942062891.mlir"
    },
    {
      "type": "modify",
      "old_id": "e33fd71c163be4245f06abb52d904236a4c8042f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins5453280543548493478.mlir",
      "new_id": "41de2ea8f4ed90b19977b68786da6137146a1d1e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins5453280543548493478.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a30b3f69c6411f5dad185d3f7edb8b8ad33ffe5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-8556092368691638686.mlir",
      "new_id": "7b25b731a94207cefdb732b7e9dd7321d2f929d8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-8556092368691638686.mlir"
    },
    {
      "type": "modify",
      "old_id": "78b3b14c752ceae91f8f12225286678ff34e85e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-4390078863631050283.mlir",
      "new_id": "aa4c2999dfb58f7e3bf0b32d0ef4359be22b4a2a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-4390078863631050283.mlir"
    },
    {
      "type": "modify",
      "old_id": "066e2edf5e33e4dff90885e37cb3bf2ad9ff61d4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd3210884206065312593.mlir",
      "new_id": "1e9757a1fc72df6cb9ecc18f90e2181927141c8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd3210884206065312593.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ddcdc08cc83e02b6420b455ee663e875dbf8015",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow1025456038908883704.mlir",
      "new_id": "5560cf3c4097d5d5523f598c2c53ff31f9504827",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow1025456038908883704.mlir"
    },
    {
      "type": "modify",
      "old_id": "c380a5a714f0362424bfd8d25ea18e85e9223456",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow3237573494961686018.mlir",
      "new_id": "4eb613985949a143a948f64bccbf3a0711aa6ab7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow3237573494961686018.mlir"
    },
    {
      "type": "modify",
      "old_id": "667e9c7070c046de247b9c0596a6a9bc376322ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-7839859950408934269.mlir",
      "new_id": "03708d15dd58a7b0ba59d863cfd33272b7aab064",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-7839859950408934269.mlir"
    },
    {
      "type": "modify",
      "old_id": "529c551bab2885b414082e68cff3cddb8aabfcba",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up6942369263525378132.mlir",
      "new_id": "e1ba9a906845566c702b03b638ef8c8b9422b81a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up6942369263525378132.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ae1068f21369c3c550b9a43a3d0626d5100a0e6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-7756467163902878913.mlir",
      "new_id": "053db683a2d7c6e245ae3643d5dd8b1ce12bc352",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-7756467163902878913.mlir"
    },
    {
      "type": "modify",
      "old_id": "c9c05c05cfa069c0f8d32bbc9bfba26390386899",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape2214961252790317124.mlir",
      "new_id": "58157003cb4f1bd39f10d51600440ba9f862438d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape2214961252790317124.mlir"
    },
    {
      "type": "modify",
      "old_id": "5edc34a83d28342f8346d675d893a90691a5177b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-8026909858088384599.mlir",
      "new_id": "79d8e1cf21d091d1771595a36002403e3e689479",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-8026909858088384599.mlir"
    },
    {
      "type": "modify",
      "old_id": "8d0275d728ca96b98ddf002ef66dafe41f742262",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3807314941237875241.mlir",
      "new_id": "f0215979c954509ad3833047951d80bfb9dfebd7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3807314941237875241.mlir"
    },
    {
      "type": "modify",
      "old_id": "97acec23f54f7b330a9a3a221ec2d158adaa7819",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-488454440685315220.mlir",
      "new_id": "8bb3e742f7f893d058d34ddd6a0ec7125a40ccaf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-488454440685315220.mlir"
    },
    {
      "type": "modify",
      "old_id": "1ae4726b2b8c42f03bfba75191cf8ac7f2af20ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-6003342809812860302.mlir",
      "new_id": "65ac4db5f5a47bded129e373929e33e8e257ae4f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-6003342809812860302.mlir"
    },
    {
      "type": "modify",
      "old_id": "1da2bcd807368c99a166165146ada1506c7263c9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-3973973289357598622.mlir",
      "new_id": "6e29bd05816e68b05677023d3ea210dd4686cd8d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-3973973289357598622.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2f7e1d1a17cab9be2615762f88b008e0a9fed20",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_4256773944042201098.mlir",
      "new_id": "c290836fe1c58349be349b6cc90da93e90022db9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_4256773944042201098.mlir"
    },
    {
      "type": "modify",
      "old_id": "82971af8a6da8f5b698a2c87d36ef2e8098a5408",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd3204989355605098687.mlir",
      "new_id": "b1b0fb85a0cb81ca9d277f21270095758b3d2540",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd3204989355605098687.mlir"
    },
    {
      "type": "modify",
      "old_id": "fd1d3b275c6e2dc76c805110f0f423846a37cec2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd8022799176354603242.mlir",
      "new_id": "470788bb17132f8e45fab652a0e29dea1366748b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd8022799176354603242.mlir"
    },
    {
      "type": "modify",
      "old_id": "cb73ab1cbf2da562eed60ce3a57d1e1611f67a74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_3719304099671093957.mlir",
      "new_id": "943145d625b95454703d82e2b9425dc5bbf74b70",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_3719304099671093957.mlir"
    },
    {
      "type": "modify",
      "old_id": "902a8ff8ab49c8e8a3cf5365e613b9c9e9c4f58a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_7082877253723391854.mlir",
      "new_id": "2808a415299296ea7540c9ec75674dc46d731a8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_7082877253723391854.mlir"
    },
    {
      "type": "modify",
      "old_id": "52ef2e392325df1b98acad17da4a4f847d6aef7a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-7938565271035863995.mlir",
      "new_id": "e5c41884ea4353458cf90f7b27f06331e8ac8857",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-7938565271035863995.mlir"
    },
    {
      "type": "modify",
      "old_id": "e15f92eff0a2f16d8db55e4057b161f25e59a9d8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_6570978612883412575.mlir",
      "new_id": "99f55b2edadc4b76aa115761fe82d19448b971fc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_6570978612883412575.mlir"
    },
    {
      "type": "modify",
      "old_id": "a7cf094e7a3f96bd11a95b1cac708d9152e04405",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7773190694039022277.mlir",
      "new_id": "173cf3b941102fa790cde30337df348559d6f8e5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7773190694039022277.mlir"
    },
    {
      "type": "modify",
      "old_id": "b8b0fc32fcd7369404f8ff6a5cf4cadb51d3a056",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_27849137539433517548.mlir",
      "new_id": "85674ae1d119fca88ac0ad2b6868f2ec9e14ecf4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_27849137539433517548.mlir"
    },
    {
      "type": "modify",
      "old_id": "6032d90aa084bc39dc636dd89219c3b430884813",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4810395954883699510.mlir",
      "new_id": "01108b4eed0cc6fcc70ef2198c298089d59797db",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4810395954883699510.mlir"
    },
    {
      "type": "modify",
      "old_id": "c8a2c05662611bb81081df32bc1412e68005830b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__6571579309048280685.mlir",
      "new_id": "ca5859ab87542aa1163963a90149005607be45b4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__6571579309048280685.mlir"
    },
    {
      "type": "modify",
      "old_id": "96a2d6bebd5dfe8d1d8c882fcff97c8d396b8b60",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-1844039835433546582.mlir",
      "new_id": "0885f7aa42c3de91f99e1ecbc06efba2e0f1ff92",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-1844039835433546582.mlir"
    },
    {
      "type": "modify",
      "old_id": "49782cfd6ddae15129e2fb2446752189909d714a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd4721539826240850833.mlir",
      "new_id": "210046cb75fd3f7baa799aa8f1738cd4282ef49f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd4721539826240850833.mlir"
    },
    {
      "type": "modify",
      "old_id": "bb42d81cbd8a9f3006e16a53bc581af3767fb553",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-6493859547791056291.mlir",
      "new_id": "9054029912633a13c943e47c1e1e57f156e9a627",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-6493859547791056291.mlir"
    },
    {
      "type": "modify",
      "old_id": "cff6808372300ab603914c5390ec7010da201592",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-9093868482978590861.mlir",
      "new_id": "7bcd3f911bc6141bbc6444641da88541b28e330e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-9093868482978590861.mlir"
    },
    {
      "type": "modify",
      "old_id": "64490785e7d7774fca5b56f29a2b352b45b16210",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_3101807958862616076.mlir",
      "new_id": "f4064262542003261713b2be173e2b66e000cc91",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_3101807958862616076.mlir"
    },
    {
      "type": "modify",
      "old_id": "45ef6caf3e015f66b91ca82f14de8c41fe4be5ef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_7771598417814736050.mlir",
      "new_id": "075a81ea2b5a581f1b01c1a764589504bd7cb963",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_7771598417814736050.mlir"
    },
    {
      "type": "modify",
      "old_id": "9eb1a1b237e3df76725215324102c7b007aacd7a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4088478221285117728.mlir",
      "new_id": "edc3f4413964bfc9086ff35eae7b8a6df1a1d1fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4088478221285117728.mlir"
    },
    {
      "type": "modify",
      "old_id": "12c3340a5786c4e8b7a1215f49024902bbab87a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_25732955927815578406.mlir",
      "new_id": "a22e1b1f606ff98d4e4bdb101db56fd8793dcb8b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_25732955927815578406.mlir"
    },
    {
      "type": "modify",
      "old_id": "015382b4b1c6060a7cd6ce006fe3b590b5401644",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-6639842389483865163.mlir",
      "new_id": "07d28ee0c25bdc9e44df6008b484793210c25397",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-6639842389483865163.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a1bf5e6fedd3e77ed75087228f780fec3d1a379",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__7830488357588033204.mlir",
      "new_id": "2195b1cd0983dd87da387074539f95c6a48d44fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__7830488357588033204.mlir"
    },
    {
      "type": "modify",
      "old_id": "1a35e8bb28005f8f16286d6233bf06f802ea43fa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat6963600156708085907.mlir",
      "new_id": "44054b0e87d61378b89c26321b18e82fc84e7efb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat6963600156708085907.mlir"
    },
    {
      "type": "modify",
      "old_id": "17f2c7f0c6ad22e1867febbd51561768a168ad8c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat8878416149102138078.mlir",
      "new_id": "de3f3491e1732d277d3d09dd4a7c2b61cedbff34",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat8878416149102138078.mlir"
    },
    {
      "type": "modify",
      "old_id": "02fb60a562451eaeb48ccbccba0974d8b10bc3c1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-7314731004182888952.mlir",
      "new_id": "4485add7a46eeb249d83cedbe5c220297ca1ff50",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-7314731004182888952.mlir"
    },
    {
      "type": "modify",
      "old_id": "0f598fe6e9c98bd227589cbfcfb7d98ab40d3a06",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__21821906852332500498.mlir",
      "new_id": "8b36fde6ecfb7869b50a94954019ceb3871eb604",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__21821906852332500498.mlir"
    },
    {
      "type": "modify",
      "old_id": "53f1b26eea802889cd947f2bb090272c1b5aa54d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_4499147356245180063.mlir",
      "new_id": "4f27ceab96dd05507451e413ef229a2d0fdbfb1b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_4499147356245180063.mlir"
    },
    {
      "type": "modify",
      "old_id": "9f29bb1191e1aec7e7e7e1598ecfecc042b947c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_9025587788653182690.mlir",
      "new_id": "d65f3340f3f4c01c298f06fa8a4cdc8db42dd53f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_9025587788653182690.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3e316a19dda7e155eb7d9e7ac7515c77ab5170c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-583937543846099786.mlir",
      "new_id": "de698a1604341bf602d4cbb66f4925e874b8cc35",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-583937543846099786.mlir"
    },
    {
      "type": "modify",
      "old_id": "10d55768701fa72809812c988ce1ae4dabd05d1a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-7084715015461268786.mlir",
      "new_id": "0d492bf55f9e57dfc56dece0883f5bbaec5495af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-7084715015461268786.mlir"
    },
    {
      "type": "modify",
      "old_id": "7d5bdc8bfd644959885ee1fdfc926bac96bfa440",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-7412834368070813317.mlir",
      "new_id": "31134f89602922faaf181833dd05857d24b92c46",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-7412834368070813317.mlir"
    },
    {
      "type": "modify",
      "old_id": "393a0b2143d2c05b09f1b119b8df2cb4d1247d84",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-7485079511943524453.mlir",
      "new_id": "b3c06f2186adcf7e023f0a41132190f3107a3658",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-7485079511943524453.mlir"
    },
    {
      "type": "modify",
      "old_id": "2588898fcae10883ee2337d986df7555aae32725",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-2821015016578538976.mlir",
      "new_id": "14de8158d6a31ae98ca5e9fc97e82e256b189971",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-2821015016578538976.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a04078873c05c69d07facf6ddecaa2795e37c42",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-4363515628628173317.mlir",
      "new_id": "e458358b29ee165f56502c65cbfc2a95b1f6b8e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-4363515628628173317.mlir"
    },
    {
      "type": "modify",
      "old_id": "2bea236fa82c4cb5694675f8063f7b658c6cbb0a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-8552418276306640556.mlir",
      "new_id": "360ab3a5d43e05f40dc5757b5636367f7b9ac025",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-8552418276306640556.mlir"
    },
    {
      "type": "modify",
      "old_id": "dee705a750efd03657559a8b9be73ccf95b87a54",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__26232119252440644995.mlir",
      "new_id": "482ee2b0b830cbee164a403539fe44827b55b1c2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__26232119252440644995.mlir"
    },
    {
      "type": "modify",
      "old_id": "49473532721e204e723999636a31073567d89b4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_1762756447761634290.mlir",
      "new_id": "ef11f94ae37145c7f654d634a39b518b5c1182cb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_1762756447761634290.mlir"
    },
    {
      "type": "modify",
      "old_id": "b20e8ffb01b0564a0ab75a176e145d46c8231e7c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_370064940315831604.mlir",
      "new_id": "501fb5e210758954f1d859a6cac2e4c4c00fe605",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_370064940315831604.mlir"
    },
    {
      "type": "modify",
      "old_id": "5691acb85bba04fe9a4fd3ec2e6820b74e1a0953",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-5091538715183112685.mlir",
      "new_id": "8d1e8fe21e8204dccfbb1827d0b84b8a812d0dcb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-5091538715183112685.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c4e27d0dbbd4c11c24802a49fc636ffb7eac0ea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-5230031465544313104.mlir",
      "new_id": "0e781e38ae479a1a624651fb4825a6ef2b870e95",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-5230031465544313104.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b454130674b70856ecd88f15a516fec35c3397b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u745960711584405074.mlir",
      "new_id": "ecefe3a66664f63fb906c8a5e08a58b6e535f42b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u745960711584405074.mlir"
    },
    {
      "type": "modify",
      "old_id": "f8f41bcdaba7e41d7bee1e2156fee5b3a57a38ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u7474826191716339973.mlir",
      "new_id": "1ea255562fa947464fb440356fc8fb1a0de724a5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u7474826191716339973.mlir"
    },
    {
      "type": "modify",
      "old_id": "dc932ccc848c9986d6671618205600aa2bfa0ac0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-5394974141977995339.mlir",
      "new_id": "ccf54fdf496aec5c0520f9875159622fa0af213e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-5394974141977995339.mlir"
    },
    {
      "type": "modify",
      "old_id": "24466f56a47e2c525414ad1bd30855a978dc2836",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update3840665188349095112.mlir",
      "new_id": "00f405da708bf7005ea16234a9729c97afb3ad9a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update3840665188349095112.mlir"
    },
    {
      "type": "modify",
      "old_id": "29cde5039510fef53e2f89e9675667bddb76f8d6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_6576008549206823569.mlir",
      "new_id": "7313002a7e968454e599036da5e7faa0e448eb0c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_6576008549206823569.mlir"
    },
    {
      "type": "modify",
      "old_id": "cdf4a836f8eabb93e13e9aafedeaa6c8b5353075",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_8145936191260086532.mlir",
      "new_id": "94d647311578b45758d4e11777c33e0a71fa4428",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_8145936191260086532.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ca803accc7fba87b29074ab526d62f2b67f08a6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-3817844005059537029.mlir",
      "new_id": "a5ce5632e1c7ac7d15f8d728c73fa0175e55c477",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-3817844005059537029.mlir"
    },
    {
      "type": "modify",
      "old_id": "57b48042e42d382aacc0cea7b3e60afa2086ccd4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2454799236677986965.mlir",
      "new_id": "86f531d6dddb27c7193f7f3c23ac32edb21d6995",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2454799236677986965.mlir"
    },
    {
      "type": "modify",
      "old_id": "daf43cf69f7665c45ede71c176448825dc873be1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-704981458838703190.mlir",
      "new_id": "79d3e00492afb7faf078768452d28ee0398b8b61",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-704981458838703190.mlir"
    },
    {
      "type": "modify",
      "old_id": "5e043700fba92e9fa69c65bef168007a4fa6a48d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_6593676401126510993.mlir",
      "new_id": "eec8733871547b302749cf56655695b87877ccda",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_6593676401126510993.mlir"
    },
    {
      "type": "modify",
      "old_id": "46901b9469603fa552abdbdbf353c24d64539d53",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1167360532793909946.mlir",
      "new_id": "0b57840fe99c65204728e894ac99e6d4b8f29b63",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1167360532793909946.mlir"
    },
    {
      "type": "modify",
      "old_id": "6d0a535fa421d330612cfb9c7b79a8207c7586da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-8298869919665076145.mlir",
      "new_id": "1d813a2648bf63f4bf7371714119b271c606f728",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-8298869919665076145.mlir"
    },
    {
      "type": "modify",
      "old_id": "18706d373faa6a4280cd03c24f0ba255fbad1bc6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda161921840649824051.mlir",
      "new_id": "b99207b947ffaff0f23dc34e6834fd13298e27b7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda161921840649824051.mlir"
    },
    {
      "type": "modify",
      "old_id": "013c609fc6f48929a33b929d55189db3a4a7a3dc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda3735630494581482059.mlir",
      "new_id": "36870187017414b18f8e38b5bd6c601e06675fc5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda3735630494581482059.mlir"
    },
    {
      "type": "modify",
      "old_id": "4f5e1b538a3c60fee7b0d42f293647affc86cda1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__2688714887801807388.mlir",
      "new_id": "82beca56ada97c1d2b46f400faa68b37bffed704",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__2688714887801807388.mlir"
    },
    {
      "type": "modify",
      "old_id": "cff3d7e7cc211fd8df9f4039077d33bf674e135c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8361960485238181174.mlir",
      "new_id": "deceefe0437786da3a8b28e02d27f1932ca7bd92",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8361960485238181174.mlir"
    },
    {
      "type": "modify",
      "old_id": "410ba69d519a0a7c2e6557eeb4ed4632cff2a0ac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-5809831560180248311.mlir",
      "new_id": "b3fdf58f5e8c7b8e4b4ddcc60b13c92887f80576",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-5809831560180248311.mlir"
    },
    {
      "type": "modify",
      "old_id": "8b1ad10024af33abbe59df87697d6118f22e949c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_56857962009318709386.mlir",
      "new_id": "8757b3408e04568e87ec2bfbda8ef057410bcf2d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_56857962009318709386.mlir"
    },
    {
      "type": "modify",
      "old_id": "e670859f7292e5c0d49f125886f5731d4aaf43fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-2304007480951039088.mlir",
      "new_id": "0548ebe6e41bc011edaafd779c068c3e5a908341",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-2304007480951039088.mlir"
    },
    {
      "type": "modify",
      "old_id": "f96ef85a6eff266f73e682292f873bc820d5a170",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_5459370073862717448.mlir",
      "new_id": "166af722a5a277d988c2b70edbc923a14f7fb275",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_5459370073862717448.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7a520e550bda26b347dc9d4a043c0c2cae48a68",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-4638989347349221305.mlir",
      "new_id": "4c21b17ddf4157c90629c60d0c6e28aeda809305",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-4638989347349221305.mlir"
    },
    {
      "type": "modify",
      "old_id": "ad66f6c35246086d42696f3f59a0063e4c2a8d03",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___5197437071204231332.mlir",
      "new_id": "1c26561ac4c0488f59bf91e462354814329edb71",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___5197437071204231332.mlir"
    },
    {
      "type": "modify",
      "old_id": "19c4e765da76365296f40c871408229d6bfd5355",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-5033170067209841298.mlir",
      "new_id": "2a759be08dd0764230262757288cc0b115e2a49d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-5033170067209841298.mlir"
    },
    {
      "type": "modify",
      "old_id": "793703a1697a99b34036459e05746bde63f5283d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda3405531792482433818.mlir",
      "new_id": "1b4fc28dbf7bf646cceb1e885c6573b927b4b045",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda3405531792482433818.mlir"
    },
    {
      "type": "modify",
      "old_id": "b60ca765d08d5c755c2e137accbcecb89bed9ce4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-3874832709047427655.mlir",
      "new_id": "ebd47db049281ac01161e0a53c8ae525a8ce6ff2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-3874832709047427655.mlir"
    },
    {
      "type": "modify",
      "old_id": "148309df79f0b7fdae2445d17b8b41a79349e0cb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-6809006410571346051.mlir",
      "new_id": "72e4ab787883f8fde51ca4bf033d143a02433ba7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-6809006410571346051.mlir"
    },
    {
      "type": "modify",
      "old_id": "a53d8071ed7c5565829c9f337c9a192cb80cfe0f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-8087282932593150333.mlir",
      "new_id": "9b4f8d11cf6f489c2045ef8f21186196bfdbef2f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-8087282932593150333.mlir"
    },
    {
      "type": "modify",
      "old_id": "73da75656c6a43dbe78db48afff64f60621b9520",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_53752717208774607143.mlir",
      "new_id": "71797798e2ed8b0ead1d36d71f31d1d5a16fb94e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_53752717208774607143.mlir"
    },
    {
      "type": "modify",
      "old_id": "f097b7cfc01a80d5bfaf1511c5c2961e15249ad1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-9119104572226652429.mlir",
      "new_id": "f62405c0a82958b3baa3cb94fa3a965e5fea1672",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-9119104572226652429.mlir"
    },
    {
      "type": "modify",
      "old_id": "8132d0a7cae516f63fd177ba11135749c7c773e7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_9027081709691489580.mlir",
      "new_id": "5daf0f1a8a2cba565e9f72d4b94abea998dc0bbb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_9027081709691489580.mlir"
    },
    {
      "type": "modify",
      "old_id": "8944e9607c6a270a7e518af307f6571f42bac8b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-2824440249156885329.mlir",
      "new_id": "9e81d7f11ee8f1ae3f4b1950ef238b5b6ae331bc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-2824440249156885329.mlir"
    },
    {
      "type": "modify",
      "old_id": "da733e14402f7bb60c3d7eb472534190e0e67c0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___4204330477043591502.mlir",
      "new_id": "860dc16c8c58ac0d4eee8320291189f4ca952dbd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___4204330477043591502.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b4457bf3926298db1e5fdae827e767d964bd998",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-1928048275487284072.mlir",
      "new_id": "55898bcd3a8a46d33228e3dab76f6115d9b94b4b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-1928048275487284072.mlir"
    },
    {
      "type": "modify",
      "old_id": "ddda7bfd70c6ca82bf3c08b21dca16e560e2166a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-5645493756063806586.mlir",
      "new_id": "af1c136ce8930c52db8cc48087212417faa5e081",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-5645493756063806586.mlir"
    },
    {
      "type": "modify",
      "old_id": "cdc65701db4e2f16f2faac167b08886a3664b76f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-4849279551096494062.mlir",
      "new_id": "b7667f6529e23a8fa21e72de7645de98544f126b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-4849279551096494062.mlir"
    },
    {
      "type": "modify",
      "old_id": "30e3b036109f614173299166439ffdf519a6dd6c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-5015570983650787750.mlir",
      "new_id": "e8bcca49c87d08708605b9fc6d801aae82c04cf1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-5015570983650787750.mlir"
    },
    {
      "type": "modify",
      "old_id": "c6ad601168d73ec07386ee02a6a67dcf1799d171",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-6488793373393055668.mlir",
      "new_id": "022c78c106987a08317c6dce80f5099fb4e58f59",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-6488793373393055668.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a66590bd2ba408ff743a025bcdc10c5e413a553",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_2876137255340148048.mlir",
      "new_id": "9633b41c7d8bda6633f8a61d09f1292e83179107",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_2876137255340148048.mlir"
    },
    {
      "type": "modify",
      "old_id": "98f9286ceb963a692f51171b6ade80a45f615c6d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5468250991339657190.mlir",
      "new_id": "34621b47c30599d4dcd7a40cf72af0ecc854b559",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5468250991339657190.mlir"
    },
    {
      "type": "modify",
      "old_id": "bc2e6dcfab62911cc93bb4d8cbda00d864eafa46",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_46597706213966163723.mlir",
      "new_id": "d5d237bf045ca9bf07e768baa35e6d2e6603828d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_46597706213966163723.mlir"
    },
    {
      "type": "modify",
      "old_id": "046909f60248fbfe4333cf44c50a4859e825b4fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u8008517684702321245.mlir",
      "new_id": "8a0dd748173b8ded6851aa7ce196e701739a8bd8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u8008517684702321245.mlir"
    },
    {
      "type": "modify",
      "old_id": "df2ae806b92102023832c8be061d6d4ecdef1111",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u8952013310211685863.mlir",
      "new_id": "500fed5033888f8ca2ad5ab70278216aa9baa606",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u8952013310211685863.mlir"
    },
    {
      "type": "modify",
      "old_id": "daff9c168c2d8a7fc4f3591d37f74fda77445dcb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-7951316018913039515.mlir",
      "new_id": "b3f1d8b37a8f585885d47fd6db121c800fd9331b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-7951316018913039515.mlir"
    },
    {
      "type": "modify",
      "old_id": "8074e050ed9a32b95b985461f7150a51a1ed2aa3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6702824425361821392.mlir",
      "new_id": "eb1f33edae1b30d136f7578a2b254332f26ee76f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6702824425361821392.mlir"
    },
    {
      "type": "modify",
      "old_id": "1f9a9503c191deb635d1ddab4aec95cb3df29d8d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-5972702966998148248.mlir",
      "new_id": "7368dfd59ce0e1897b11e8f49313dc7e63cbb734",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-5972702966998148248.mlir"
    },
    {
      "type": "modify",
      "old_id": "aa7f7952b880219259ac496c95e0356b8742e705",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew1407841965061306462.mlir",
      "new_id": "9bdfb0bd07cd68b22b552ac36542881f0264bda4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew1407841965061306462.mlir"
    },
    {
      "type": "modify",
      "old_id": "4e971c28791cd23811a983ae0c3e4dec2b485d9b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-3943852519473722017.mlir",
      "new_id": "85f0ebee0658605cb4391f0aee4c8a9c8060a27c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-3943852519473722017.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a580fb793b404268e593e16e751f6de8d3ae50b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind127580504216186793.mlir",
      "new_id": "e780da8313b21ca8188ecaddf9a9764868055e99",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind127580504216186793.mlir"
    },
    {
      "type": "modify",
      "old_id": "cb7faa1d775be69e0f1cdf503fd8ec32e2651098",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-7506540865680037479.mlir",
      "new_id": "9e9814e12dd2edab7412c9e2749b8ec3ebf552cb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-7506540865680037479.mlir"
    },
    {
      "type": "modify",
      "old_id": "8c298edea65f5dae2dd592ba0eeb2a6586d974f9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew5584184258335034500.mlir",
      "new_id": "5089a79730886502fe54ff373aefd91eb1647b07",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew5584184258335034500.mlir"
    },
    {
      "type": "modify",
      "old_id": "12565f1e2e26922800ac416b08fa918af1a00429",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-4251555005392764840.mlir",
      "new_id": "c76f62d93351091da4c938c78c9a975d08f71168",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-4251555005392764840.mlir"
    },
    {
      "type": "modify",
      "old_id": "384c3b85ada90c5bff2d2029ee75d86c3e34b75e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-5229134625950574353.mlir",
      "new_id": "a3a579e9617c24bfb4534096cef38a9efa972d6a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-5229134625950574353.mlir"
    },
    {
      "type": "modify",
      "old_id": "022a3d3924ab35f74586a0f787c303a921f06135",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-3961914136394634324.mlir",
      "new_id": "aae965c68f436c4e60847fa389b7ac21ec71b764",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-3961914136394634324.mlir"
    },
    {
      "type": "modify",
      "old_id": "e30585196a0c4cd00fc22bb5fc7531a3c212624e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew3401137719720140593.mlir",
      "new_id": "3d4dfb8ef9d209dee6f1b6a7e478a0dc7e3521d1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew3401137719720140593.mlir"
    },
    {
      "type": "modify",
      "old_id": "5bc009765c41210759c2658c1a685809cc5b5cd8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat2982281935440931080.mlir",
      "new_id": "ce2d9f30eeeb32111c54eb11294ef8e33318b919",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat2982281935440931080.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a6d99bfec86fabda8ee1b5d0672465e29eadac5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat3084121004419047144.mlir",
      "new_id": "b6cda435f5fec1ff8c39828178404975f9916c5a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat3084121004419047144.mlir"
    },
    {
      "type": "modify",
      "old_id": "9bddde6cc190d3ef14de458bc41ef7e5c0c5b6fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi2750489734415423653.mlir",
      "new_id": "e26eeeaae578a1f5c300e6ebbbd6ab58bd47a7f9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi2750489734415423653.mlir"
    },
    {
      "type": "modify",
      "old_id": "49500b19fb70c12f31e4bb9882c3e2e6953504e2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi5124668511842850918.mlir",
      "new_id": "38c14b03730e156dc1e339da2b75316841d94b96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi5124668511842850918.mlir"
    },
    {
      "type": "modify",
      "old_id": "941ab53696777f39c72c02583ec10973c2f88527",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd-6081757470381034206.mlir",
      "new_id": "949c68f1aff98a7b9e89b045d442a77e57f79547",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd-6081757470381034206.mlir"
    },
    {
      "type": "modify",
      "old_id": "4751cd63e1deded0d41bcdeab77c37a0e53317db",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3885288221741258848.mlir",
      "new_id": "e813dbc7da37ab63d77d2bd0a0b498bd5eaa11c6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3885288221741258848.mlir"
    },
    {
      "type": "modify",
      "old_id": "c46b5fd403e84f274a43174713168e853307e893",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update7364310318843531288.mlir",
      "new_id": "102818d454d7e480fe77d895372803efafa85df2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update7364310318843531288.mlir"
    },
    {
      "type": "modify",
      "old_id": "7708e26d1590291eace84c895451896c6fbd223a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update8372352202104151718.mlir",
      "new_id": "03d989c8680834d6815a0e67d5f8429a1b93cbd7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update8372352202104151718.mlir"
    },
    {
      "type": "modify",
      "old_id": "0707d4aa5724a34dcad8b054193d32eac363ed21",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-6857933840613967855.mlir",
      "new_id": "30426205a599826f0858e363b9861837d26e1892",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-6857933840613967855.mlir"
    },
    {
      "type": "modify",
      "old_id": "382dfdf1e933380a7cfe91dd23403603215f0e74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_1854402682370088797.mlir",
      "new_id": "69f3fbe27febb0539452a5c67e229c495c0d3e4d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_1854402682370088797.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d7107905f65fbde9231784766ac1b1beae55b05",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-4664842944644532288.mlir",
      "new_id": "5cbc283f4988343ae97cf93378cfb7b5afad6635",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-4664842944644532288.mlir"
    },
    {
      "type": "modify",
      "old_id": "f1672f5d373998614a0ca6c0b812fffa9b194a5d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-4912124039036857606.mlir",
      "new_id": "e297ce4a9de65958cf6045c4e78caf2685ac6a0d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-4912124039036857606.mlir"
    },
    {
      "type": "modify",
      "old_id": "ddc6128f742b480203c1d23be0a8e2e8ab6eebdf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates8425066511028864359.mlir",
      "new_id": "09ac77320b7033ee0127ffe28170d63dfe1e9235",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates8425066511028864359.mlir"
    },
    {
      "type": "modify",
      "old_id": "490740a3ab7de0cb907a5161331f69e3d9238882",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates9039479434269282771.mlir",
      "new_id": "00daa9cb628d1418359abb5997c5a85b4ba2db7a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates9039479434269282771.mlir"
    },
    {
      "type": "modify",
      "old_id": "26ff53ac2b7411c451e44ba31e5bedc1c9e3d464",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-8731115509034630074.mlir",
      "new_id": "fd363d779a37e93e2d11cbc9f80c4a55b41dc2ac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-8731115509034630074.mlir"
    },
    {
      "type": "modify",
      "old_id": "1893eeded8b73864b68678e9771a52e324fd1eb5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin5456048288023940070.mlir",
      "new_id": "46eb82ea02b888a195e161933a545f7b7474fbf9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin5456048288023940070.mlir"
    },
    {
      "type": "modify",
      "old_id": "93afeb291c650c6d7c9a0972f334e04ba34d6afa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-7461026489300552530.mlir",
      "new_id": "73acaa4908aab334bce7973d879f5e261af97a13",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-7461026489300552530.mlir"
    },
    {
      "type": "modify",
      "old_id": "657aa53eef2d7c3af9eac81f43d24939de75d032",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi7584067801932672436.mlir",
      "new_id": "3ed9d213bd34b7329b680b42a93cbeb2cd6df856",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi7584067801932672436.mlir"
    },
    {
      "type": "modify",
      "old_id": "9aed8a3b5dfd98d5fba7d5c11e181f3c4ee620a0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo6262511284222583383.mlir",
      "new_id": "dceca5b6aec4962ee299b8237bcfdaa881b1f850",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo6262511284222583383.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f0bce74811c031d766dcb7e1e9193723b013b94",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo826934003937973373.mlir",
      "new_id": "055109d0b1697546e3ed616602230380c48bd03c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo826934003937973373.mlir"
    },
    {
      "type": "modify",
      "old_id": "8ee7b84e26710be162293dfe499b266cbb42b654",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi-413052865564151320.mlir",
      "new_id": "71ff2789caf3f295ecbdd43e42cc82d7ae13323a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi-413052865564151320.mlir"
    },
    {
      "type": "modify",
      "old_id": "f129900622637d164fd80ae4ecbd9b03510b979a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi4461960695973448237.mlir",
      "new_id": "e722b7dd2818887503c8154e4f51ad62d4c96cc3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi4461960695973448237.mlir"
    },
    {
      "type": "modify",
      "old_id": "1413f31a11e27f1b9f1e45d6a5c2b03de45aedcb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-5801480997889705312.mlir",
      "new_id": "360b244dd6f3399920ecf688b20687dda154edc2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-5801480997889705312.mlir"
    },
    {
      "type": "modify",
      "old_id": "6549af355749f46071758629e206522f23406fd6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew8160063217424680651.mlir",
      "new_id": "8a814c370075ab8498bef325682e71064bf28f11",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew8160063217424680651.mlir"
    },
    {
      "type": "modify",
      "old_id": "71fbbb3e143eb10048064df0c6bb392b75a460ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2327934312904943306.mlir",
      "new_id": "39c60fa370f5b171766bec8779be32f4391350f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2327934312904943306.mlir"
    },
    {
      "type": "modify",
      "old_id": "759bd8a1880a0c406e550ea65e7f65f1673cb850",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-5939485743090244293.mlir",
      "new_id": "81938b3b4fcdcde668126e7dda3cb4a50c9922e3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-5939485743090244293.mlir"
    },
    {
      "type": "modify",
      "old_id": "7b35f0cf0d4633cb4590ab4c4c4824fb2fcfb50f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-6025244686982047499.mlir",
      "new_id": "24673e428027cbbbe22d06db22de8588641b27d6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-6025244686982047499.mlir"
    },
    {
      "type": "modify",
      "old_id": "1433f87d1eec3745755d67b2358170b9765d0af6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update3446534180989259789.mlir",
      "new_id": "c626e7f96b221f9b14781cdf1e345488e84eb76d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update3446534180989259789.mlir"
    },
    {
      "type": "modify",
      "old_id": "d63df2fb98436f28cce54e2599a74fde9c97a067",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-5250745436348551263.mlir",
      "new_id": "7266321e49dea4e62bd4941d031bf5420ab2a0fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-5250745436348551263.mlir"
    },
    {
      "type": "modify",
      "old_id": "7386e436c6a8dedcb6eec45b8b934b7747bc2e21",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim7739733770160348375.mlir",
      "new_id": "a1077c972bb7717945086b3d24d053186e21ce3a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim7739733770160348375.mlir"
    },
    {
      "type": "modify",
      "old_id": "2afeaf41e178b5be4153dd9938de7678245eef8d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-3538272321874794861.mlir",
      "new_id": "07c513ef861be2c2a67c087e97746717361883ac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-3538272321874794861.mlir"
    },
    {
      "type": "modify",
      "old_id": "f3703426252e7197fc8115757e5f9cdb1ba568ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-392663043202175784.mlir",
      "new_id": "3495e6caf2df7b824841e5e833f51c1891d79fc0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-392663043202175784.mlir"
    },
    {
      "type": "modify",
      "old_id": "b97003137e00b9551c17dec2ffb637a8a41b514a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-2440309485513542178.mlir",
      "new_id": "28070daadaf4d4d8e86a3ef3d8c88cc9371b92af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-2440309485513542178.mlir"
    },
    {
      "type": "modify",
      "old_id": "36d6d0c829a8902ed9bf6c200d062cb5798c07bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew7426129206573115753.mlir",
      "new_id": "6bc7defae419216bb60820852ab07d4a3f01dee5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew7426129206573115753.mlir"
    },
    {
      "type": "modify",
      "old_id": "ff09e281917778eeea378399ab8ca18b01619ad2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-159451342797418259.mlir",
      "new_id": "42ed98b008972b1268f03fb5d272ed92578fad75",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-159451342797418259.mlir"
    },
    {
      "type": "modify",
      "old_id": "047a8409d5ff59eb2ccddb5f22fa302e09aebbe0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-5578923499037233624.mlir",
      "new_id": "d0b4c5d43f04b0564104ff8008d556ea83133c0f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-5578923499037233624.mlir"
    },
    {
      "type": "modify",
      "old_id": "67b366e9dc64f01d7e62a6a176e0d4fc414dabdd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-2444622237702936986.mlir",
      "new_id": "ebf84054129f702d3fabec0d4fb10c267c493f42",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-2444622237702936986.mlir"
    },
    {
      "type": "modify",
      "old_id": "cecdccd906861ddb73a8e2880ac4ee4c159397f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-7757199019071415531.mlir",
      "new_id": "703a99277365336ecb80ac6e507fb5320972f7a9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-7757199019071415531.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f6cd8a5d71c37927971dab8308361a36c4aa98c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-3136091413228841764.mlir",
      "new_id": "d66c14a45f64d35b9834372964daa1f319778ddd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-3136091413228841764.mlir"
    },
    {
      "type": "modify",
      "old_id": "e984cd52aa3ef0fc59b5b651d60fdf6a0af588ed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-6758286671672048533.mlir",
      "new_id": "510852ae86be1bf94c0c7871d4d32b63980c5b2d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-6758286671672048533.mlir"
    },
    {
      "type": "modify",
      "old_id": "5473ccc466cbc30cc5324f80859fe77d90fd7ce7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin6630480169388456900.mlir",
      "new_id": "282b3b724af7566a6d9d9111141c9372b7fa33b4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin6630480169388456900.mlir"
    },
    {
      "type": "modify",
      "old_id": "7ecace859ecfa017163408fc1c0e5f0efd028eda",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin8572492367628107196.mlir",
      "new_id": "e09ee19e5be2bcb721743ff4e9a9040acec28dd7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin8572492367628107196.mlir"
    },
    {
      "type": "modify",
      "old_id": "59123f41f99e6875e446ebe8887162bafd82fadb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-7371943639734852459.mlir",
      "new_id": "fc6699be0bf791363648f28067b03ea0df89f520",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-7371943639734852459.mlir"
    },
    {
      "type": "modify",
      "old_id": "034a3ebe8ebec71820ed3b72f8497af7ff001b85",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi4068384492096779511.mlir",
      "new_id": "fb8f747b31ed1dca16241c0001fbf73571452f30",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi4068384492096779511.mlir"
    },
    {
      "type": "modify",
      "old_id": "b9be25828533a861df2b41da16b17958d3355a51",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-2154616836031129399.mlir",
      "new_id": "f5fa8fa02a10c2cf2b4d590e75e71ab722f6bcf0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-2154616836031129399.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cfaa4b16bb8dc118e79f15f0d97e4f78e050e8c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo8211732968977781634.mlir",
      "new_id": "9f8f0311874a97d1d44bd8289dbd5b43d9e9dfe8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo8211732968977781634.mlir"
    },
    {
      "type": "modify",
      "old_id": "c8f6a8bcfc00fa770cdb7cb66da7bdf8ce2770e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi1964705741470670687.mlir",
      "new_id": "a0224efd9cce031317a734c77e4bb1e042ae5cde",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi1964705741470670687.mlir"
    },
    {
      "type": "modify",
      "old_id": "b1ff9e50af450215dc5078ae311c14c68c15b893",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi8565875730962467804.mlir",
      "new_id": "42bd39b30ef94a6f527214b8d638e8d71d590f96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi8565875730962467804.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ba48234fd0c3e93a168041ab84298f1761d204f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew-404205633388340906.mlir",
      "new_id": "f7b3345b41ed23f9cd1eed52cf5a51c7bf20b08c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew-404205633388340906.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cdd7b970a57d820b61672376d4da4c4c2b51d3d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew3237864401487247669.mlir",
      "new_id": "b0f1e46286e054f0f892cca483b9f029decc402c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew3237864401487247669.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3d70861981174d64fd3f947dbd6ca2cf16d7520",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2067769420489394878.mlir",
      "new_id": "65166c061a91e1a2cf6a3269b0c4bbff47acaa71",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2067769420489394878.mlir"
    },
    {
      "type": "modify",
      "old_id": "dab9d7e4626736004154b743315b46511c5d61d8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-6579002509224460796.mlir",
      "new_id": "d8545020f52f76b3c42ebff8f41da8eb6f870e86",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-6579002509224460796.mlir"
    },
    {
      "type": "modify",
      "old_id": "36892e8afe3eac187fac4d3c5c1d3167ff00f231",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-2859679405862166530.mlir",
      "new_id": "6b5914ccfa59f67e3615e6fa442182d4d85a2dce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-2859679405862166530.mlir"
    },
    {
      "type": "modify",
      "old_id": "f3cdc6d3d042d99c1928f3e22a6b8f231e0b174e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-7634215713295217725.mlir",
      "new_id": "98e70172d4a65e383bd40aa162eb5d30c2f79ebf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-7634215713295217725.mlir"
    },
    {
      "type": "modify",
      "old_id": "424eae75d7b6fa5697a6c789ede4a3af880aa495",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-8284545332321621723.mlir",
      "new_id": "af525cc7c82eb07d531d636deb39d636729cd355",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-8284545332321621723.mlir"
    },
    {
      "type": "modify",
      "old_id": "bd1b868d44aedab8813054acef7b281f55fa93bf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim2552856992181958030.mlir",
      "new_id": "94a928484d168dc0b332b0207a77584fc96dba09",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim2552856992181958030.mlir"
    },
    {
      "type": "modify",
      "old_id": "61d58d0a99345d1262e3ca53db0f6ed740e019f7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-2412234970495546907.mlir",
      "new_id": "f4c8df61d2fc02005a7691e8413feca47e5a4c2f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-2412234970495546907.mlir"
    },
    {
      "type": "modify",
      "old_id": "f2570c1438cd23e61ba049ae88c11f013e076393",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda453838035690433383.mlir",
      "new_id": "56a122d72d9e96c88d55db8322f6e85d634a42d4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda453838035690433383.mlir"
    },
    {
      "type": "modify",
      "old_id": "672517378c69aa0f418308efdd8f3d67f1d4b44a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7533059538631912228.mlir",
      "new_id": "52cc7c3b8ac485a37df20f5b4265dde92cd19275",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7533059538631912228.mlir"
    },
    {
      "type": "modify",
      "old_id": "21d481ed309d5aeeb1323885b010b6a064f26136",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew3375484086611496655.mlir",
      "new_id": "44eb947333847416786b8bd7fd1cac1fd684db11",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew3375484086611496655.mlir"
    },
    {
      "type": "modify",
      "old_id": "9c363f10b9f26cfeacd8ba9359713c014f110a25",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-3920948015976371115.mlir",
      "new_id": "2df1f6a485d6277cd2525d0a437ddf27f75c5fe2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-3920948015976371115.mlir"
    },
    {
      "type": "modify",
      "old_id": "719217ab73a11e0716d75d22a57e4c9eddf292ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-7515156318392282609.mlir",
      "new_id": "5fd339862d489372f345f55501b85ce0862d787a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-7515156318392282609.mlir"
    },
    {
      "type": "modify",
      "old_id": "5e70bd937fcda67a8b843a5290a169c0e92f66dc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-1170955320691764183.mlir",
      "new_id": "171768629e3371aebcdee88aed236df518131f2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-1170955320691764183.mlir"
    },
    {
      "type": "modify",
      "old_id": "a8ec58b894d2957d5b92b1a000b110e0b34976b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____2313902312206829190.mlir",
      "new_id": "637112541c4eaabf9529375d7296499c396e9c9b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____2313902312206829190.mlir"
    },
    {
      "type": "modify",
      "old_id": "5be2909cb085b706b659cfbc0a0e0de063d3ac9f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-7684033199204675714.mlir",
      "new_id": "fcd9cc2e27daeaee66dd6c407f700fbba9a0848d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-7684033199204675714.mlir"
    },
    {
      "type": "modify",
      "old_id": "f3ac3af776e925369eea153ac01202cc7b2a1e02",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh3178105627475464119.mlir",
      "new_id": "d756a2c1b101db2cb95e4113fdf7af468103dab5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh3178105627475464119.mlir"
    },
    {
      "type": "modify",
      "old_id": "61225fc55bc64b73668e4fa9dd80f419c23a6424",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-3654291814679525556.mlir",
      "new_id": "42b698fc5bcd96659fd0c30508b094f29c81780a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-3654291814679525556.mlir"
    },
    {
      "type": "modify",
      "old_id": "70dd8103d50aa48f0b6962bab92e97a8884a0839",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-871221408395309914.mlir",
      "new_id": "9487af68a09b1f150c6e2610d7b16f70a623ed04",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-871221408395309914.mlir"
    },
    {
      "type": "modify",
      "old_id": "c3ea045bafed18fb0e4d313d8ccaed2f8293ba94",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-1266270276664743071.mlir",
      "new_id": "f397825031613c46d96f5c2c0b9ed8860fa0c0c7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-1266270276664743071.mlir"
    },
    {
      "type": "modify",
      "old_id": "f80638ee39e7a81b671620fca39b73d0653feab6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind7510692379337228912.mlir",
      "new_id": "d5068715c916b46a8a5bb8a6ab22f988bfe14ca1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind7510692379337228912.mlir"
    },
    {
      "type": "modify",
      "old_id": "4ff31f86361167a292160163aa9e840f20990fad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-5539344497814516958.mlir",
      "new_id": "4261b6777f51c003119d74b43286dbc72b46c0ca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-5539344497814516958.mlir"
    },
    {
      "type": "modify",
      "old_id": "9111e3f32d0528e61176e5cd6b3e6043bde4a2ed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd628686664965122633.mlir",
      "new_id": "d91f464a3777ea7495fe7ce1028eff31bc2b9fc9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd628686664965122633.mlir"
    },
    {
      "type": "modify",
      "old_id": "7662c0d0bb95464e4e10570c2808eecb55b2cabc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-7281596825748537654.mlir",
      "new_id": "31d12989d5a76e28191bfe3541a0b55921e57060",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind-7281596825748537654.mlir"
    },
    {
      "type": "modify",
      "old_id": "e721588ffa411186125c3d9ff8dd8894c25e896a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind343624490879144246.mlir",
      "new_id": "6a47a0a5732bc68f5a1d6c21735703a20155d2fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind343624490879144246.mlir"
    },
    {
      "type": "modify",
      "old_id": "b4a98a71fabe52e82f67a5b76e05b0773e898b5e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-9130298215407344948.mlir",
      "new_id": "2771013b337ebf82be7e2d6e730ebd39df86f318",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-9130298215407344948.mlir"
    },
    {
      "type": "modify",
      "old_id": "fc5a6f2aa55a19bd0feef611a023470429e2ec37",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin29170760427750106.mlir",
      "new_id": "58662e7ab3e84d5ff82784cb1af72c18eaa492d9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin29170760427750106.mlir"
    },
    {
      "type": "modify",
      "old_id": "e723dd8730225d658638f1bd527a5f20bbe3c909",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind6199941392158014970.mlir",
      "new_id": "d04f95f0f8ab2d7f36ab726060d02b02e881400f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind6199941392158014970.mlir"
    },
    {
      "type": "modify",
      "old_id": "46d79fb0b7b9be0851c6612dd99f3d76952da84c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind7584387903479037346.mlir",
      "new_id": "d24780b1038096a20172443e6f39ece1a2664bf1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind7584387903479037346.mlir"
    },
    {
      "type": "modify",
      "old_id": "6d7bba99a9bbdde2937310b7e84d3dbed42b31ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi645749440987017403.mlir",
      "new_id": "87b8fd8e2d71d6b8d6e27ab6af21a9c84ccc161e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi645749440987017403.mlir"
    },
    {
      "type": "modify",
      "old_id": "134503815fba69007ad512a2f5f109c9f4184276",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi7756715673163114539.mlir",
      "new_id": "b78ed1347567dcbd9053db62bf3761b1bf79b746",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi7756715673163114539.mlir"
    },
    {
      "type": "modify",
      "old_id": "b3aa301faaaf1e28ab62340f366df7b5b767d32c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-3679121800625812234.mlir",
      "new_id": "910655e0f2c34052a3d79507e8d140e8922d927e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-3679121800625812234.mlir"
    },
    {
      "type": "modify",
      "old_id": "d7aa7bc6a9b9e3199e894817fc5d30d6de5c0267",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-8475013276026304217.mlir",
      "new_id": "9050b1bb774766f42f49a03b0f43a57def4bd9f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-8475013276026304217.mlir"
    },
    {
      "type": "modify",
      "old_id": "a9da3a1f1be36517e8008ae54c9e71ad2c3ab58f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update5145103864147144487.mlir",
      "new_id": "cb23898ceda4eaf60f9a24bcb22535bf25fc6cc8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update5145103864147144487.mlir"
    },
    {
      "type": "modify",
      "old_id": "5a876508867a8fbd454359d922e526e5c6293790",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update5305151552116457906.mlir",
      "new_id": "4b18fabeba961d0ec45fe7323cf2174cc8b91044",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update5305151552116457906.mlir"
    },
    {
      "type": "modify",
      "old_id": "01a6c8e1676b44bbb1bcd1a11e57bb15800a3d44",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin6273731547009376844.mlir",
      "new_id": "7213f108ff749ff2d1ebe952a9a1e6620e1f6b94",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin6273731547009376844.mlir"
    },
    {
      "type": "modify",
      "old_id": "49834caf916eb68b3efbbd24f0ae7f86aff27818",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin942858064976496756.mlir",
      "new_id": "6f55980b8c9b54de4e2fe1a9686a39344e969572",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin942858064976496756.mlir"
    },
    {
      "type": "modify",
      "old_id": "075067c7a20a3b64769f2ebcd6b50e0f4a9f71aa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3444864293038376401.mlir",
      "new_id": "c36f538deeb4c9a8b11f816888a87f56d7b6f7c5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3444864293038376401.mlir"
    },
    {
      "type": "modify",
      "old_id": "e54b8755f8eb8a59fe385dd01aee44896d92c171",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7188394306654795863.mlir",
      "new_id": "c738b9e54e2d482fd35fba1043fd547e2fb4663d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7188394306654795863.mlir"
    },
    {
      "type": "modify",
      "old_id": "5b83dc7ad3afee9aa62240a16b2592792e31a270",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7107157064561570510.mlir",
      "new_id": "6d4ed58c082252b7d083f12d0d708cbc86435ea7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7107157064561570510.mlir"
    },
    {
      "type": "modify",
      "old_id": "b02f4a71a6aacc2af6a5ab879d95fad4156f9a96",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7387677201127024645.mlir",
      "new_id": "a2abf50b35db8da5c56751b95a01c4ad50c064b6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7387677201127024645.mlir"
    },
    {
      "type": "modify",
      "old_id": "d5224b6ed83c5137b02dbc78fa63d194df7853de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-8046792862695677092.mlir",
      "new_id": "66de65fa56c7d8a81655e4e93f4e6831b11d978d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-8046792862695677092.mlir"
    },
    {
      "type": "modify",
      "old_id": "73cf7b22d9c7933e75889a575bf60295aa695265",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap6673711492997861910.mlir",
      "new_id": "d9efcd0b013e07a62bfbd85522a260801baeb525",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap6673711492997861910.mlir"
    },
    {
      "type": "modify",
      "old_id": "535cb23058293ea1cdf4babac25e99b5fc3c0977",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo4656103149856539072.mlir",
      "new_id": "b5681e6f0c7f17223c9464a40ed33ebb12685166",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo4656103149856539072.mlir"
    },
    {
      "type": "modify",
      "old_id": "16f767c6fa0da487e71e75373d86868ee249e213",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo6174606093632257094.mlir",
      "new_id": "1294b5100a3778fc065138d9d96fc45a512c7bf5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo6174606093632257094.mlir"
    },
    {
      "type": "modify",
      "old_id": "a03effe93432da6b87d018aee8530f9c7f7cea3c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind7605846626881629019.mlir",
      "new_id": "bbc80f604d4578455a38bdb0436a6b7ac3165e30",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind7605846626881629019.mlir"
    },
    {
      "type": "modify",
      "old_id": "4985eb3b99a9acb86cccd3cc0c876a682b709b36",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind8480432924465288348.mlir",
      "new_id": "a67732914212caaa49374787d820f2a4ce3d55e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind8480432924465288348.mlir"
    },
    {
      "type": "modify",
      "old_id": "01e829537f7ea0e0f051c3b31e2a94121817ae36",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-1521835621444368318.mlir",
      "new_id": "32b13f671abe21add41021c5bd335b93db6ce244",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-1521835621444368318.mlir"
    },
    {
      "type": "modify",
      "old_id": "f872870145fb354f8210ca446965099ef00bb42b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-169679448021614044.mlir",
      "new_id": "3a7779f1f745fc60b82b5232ed1cebf1fadf3ae3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-169679448021614044.mlir"
    },
    {
      "type": "modify",
      "old_id": "1545bf5fcddfdcbc6123cd82844d1238461f3a2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind8659525051222717199.mlir",
      "new_id": "0ca52ad18cf19ee212893d94cae1f7315665a893",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind8659525051222717199.mlir"
    },
    {
      "type": "modify",
      "old_id": "c66c31f46f6c0aab68a0b2e9b88392e0aff615f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind9221825623425246191.mlir",
      "new_id": "cd26942137ccfc797cfc6c16ec3ad4fa748d37c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind9221825623425246191.mlir"
    },
    {
      "type": "modify",
      "old_id": "72f8a0298f4c0054aba8cc327c4a4f023461d4f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-1243305172105270209.mlir",
      "new_id": "f6e67d271e12584565ab2b07e980dbe31c05c22e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-1243305172105270209.mlir"
    },
    {
      "type": "modify",
      "old_id": "c9b6c06c0daccdbd3975d880b6c12aa8ea6c35c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin2903989190550323920.mlir",
      "new_id": "dd8b4c156b1988701da9b4d608d0a11e3a0f6dc8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin2903989190550323920.mlir"
    },
    {
      "type": "modify",
      "old_id": "06139ea7f40692ab4c5ac21c36a781c1678756f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind8114183208411738953.mlir",
      "new_id": "e39aaad4f4c839f3b8b5c3bb8de8ca59619420e2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind8114183208411738953.mlir"
    },
    {
      "type": "modify",
      "old_id": "943492c151f4adbf10aa28327d8d84db5794ab00",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind9011474719121171092.mlir",
      "new_id": "d980a6175b24a0c83d263d75b2d6ec70fa8f390f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind9011474719121171092.mlir"
    },
    {
      "type": "modify",
      "old_id": "931a94b3c4d340340070b836d660583843882acc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1609030670137173878.mlir",
      "new_id": "7ed838af012c8dea4cd6fb2a01f703ae5d72eb98",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1609030670137173878.mlir"
    },
    {
      "type": "modify",
      "old_id": "f39308dff448af663c6280ebd46367ab26a233ef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi3133214799466578856.mlir",
      "new_id": "8b6138026331e50d1aa41b5c8dd3fcb27cdfbd61",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi3133214799466578856.mlir"
    },
    {
      "type": "modify",
      "old_id": "c060bdfbade4ac1e28b8868bc2a8fe27b2ee0b69",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-1135572076354273511.mlir",
      "new_id": "6155d0ac01351b7e38fed52f0b2c15000f96093d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-1135572076354273511.mlir"
    },
    {
      "type": "modify",
      "old_id": "2100d6e1922797ae3ec030d3838e238d36f92f15",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-3604859808534884877.mlir",
      "new_id": "a736f15f4ea6ed9c95dd0698344bbc0822f606ea",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-3604859808534884877.mlir"
    },
    {
      "type": "modify",
      "old_id": "d0fe559e2b7611bd780bd92f0b19078e31a13322",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update4471163082483622438.mlir",
      "new_id": "afc8cd3dbe4dbd686ab891a454ba1e5f3caec5d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update4471163082483622438.mlir"
    },
    {
      "type": "modify",
      "old_id": "e70186694283fa95aa069ad053041132bdb8d817",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update6384155601706297380.mlir",
      "new_id": "03669cba259ac7df2a0fef413f119c8f7f57775e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update6384155601706297380.mlir"
    },
    {
      "type": "modify",
      "old_id": "9261c17c56369aa44de2f602302176cc29563c22",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4610183090425207438.mlir",
      "new_id": "0a038f96aac2acd43076129aad604e0e7a47d6fc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4610183090425207438.mlir"
    },
    {
      "type": "modify",
      "old_id": "774b2d3979faa0979abf1c18d315851168681fe0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-8061986652111493245.mlir",
      "new_id": "932fa97bd4c64ae23d47ab8ee5bca9db384a394e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-8061986652111493245.mlir"
    },
    {
      "type": "modify",
      "old_id": "3dd73bf1cd06389d856a2e094b398e1fd0e8665d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-163470273381609128.mlir",
      "new_id": "368809d14a5f005c30f80a1441440e14de4f0ebc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-163470273381609128.mlir"
    },
    {
      "type": "modify",
      "old_id": "804589e4328d680468ecf7a7d683132bfd4316a3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-18573880227059666.mlir",
      "new_id": "edb4015c76c4f3f1617f3db358f1cb15da3a0a3d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-18573880227059666.mlir"
    },
    {
      "type": "modify",
      "old_id": "2839290fd78438f461a3d051dba8e4e109f0d18d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-3276982532932579518.mlir",
      "new_id": "5dd376fb02b8c0b4551d86d79ecd6d2629604e3a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-3276982532932579518.mlir"
    },
    {
      "type": "modify",
      "old_id": "416794ea4a57f2b8d7e05a874f9963261014775b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-4337912569205295127.mlir",
      "new_id": "b58e5dccb4783da4b8ab68d21e6aa9fb88d1422e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-4337912569205295127.mlir"
    },
    {
      "type": "modify",
      "old_id": "07fa3a6cb9261bc9a82c6404b4c768e2923ca0e7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-464904247894401737.mlir",
      "new_id": "48d41dcbfc8242f6e83f3da93634c7ff24c77784",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-464904247894401737.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b9608b36ec00fbcbc886314fe50771f13858c62",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap164430147412181105.mlir",
      "new_id": "9345c17db48260ba5932edd2142df1ebbf53554e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap164430147412181105.mlir"
    },
    {
      "type": "modify",
      "old_id": "9746c4a1cd42a760e665af89298e8b30d6e2d16d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-8386886293990609168.mlir",
      "new_id": "91be4c8cfe76063871c3d85916270147d30f87da",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-8386886293990609168.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e0e34ccc40a8874ae67199073f25893f467ecc6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow6998811498039155782.mlir",
      "new_id": "9dd1640ab740e40e153a39be91bc8369d6dd825f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow6998811498039155782.mlir"
    },
    {
      "type": "modify",
      "old_id": "08f2567c6f727327d9250a53ed0cf615949f7715",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-166998336338534843.mlir",
      "new_id": "6b56896a8a2027c543ad51087cb1b5802d5557af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-166998336338534843.mlir"
    },
    {
      "type": "modify",
      "old_id": "5cc224e4e92ff642e5e54ea5ce2786886db2c010",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4171420055510686488.mlir",
      "new_id": "4a4e789afd2535ac0af169479c1b5fc77bc36aaa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4171420055510686488.mlir"
    },
    {
      "type": "modify",
      "old_id": "01c7b056513a0b8dbba395444d3ec9d3d011c6ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi2814190485852129409.mlir",
      "new_id": "745f2110d33bffe69c27e631e5865ec78e93fa69",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi2814190485852129409.mlir"
    },
    {
      "type": "modify",
      "old_id": "ac29c4665327e63d71ac3de48830c5e842edcc5e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi3666386104836301017.mlir",
      "new_id": "3189463a5f8dc9ada888c0021e6583f6ecaba95a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi3666386104836301017.mlir"
    },
    {
      "type": "modify",
      "old_id": "779823768241621224c09f79159734bbfad9a171",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-4820753800701744168.mlir",
      "new_id": "40cb0e6a2e5238ec24db6135e1420f8e45940ceb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-4820753800701744168.mlir"
    },
    {
      "type": "modify",
      "old_id": "74f9364af8dce14fb943f4e517c22e90512b5c00",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo6247082404024764138.mlir",
      "new_id": "053040a2c66ac74385e35ec40cbe680cda2c1101",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo6247082404024764138.mlir"
    },
    {
      "type": "modify",
      "old_id": "73d08bb50aecf234586f74d975ebdb7146c197ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-4394756924061263821.mlir",
      "new_id": "1d4be1d3ebcbc7b2b7e2026782f64a86d55ccc68",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-4394756924061263821.mlir"
    },
    {
      "type": "modify",
      "old_id": "9ead41184734c90e7a3ad206881aaf395eba70ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind8730101061849356499.mlir",
      "new_id": "664e1899c5e80a656b8e7d7440437eba51d2e4f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind8730101061849356499.mlir"
    },
    {
      "type": "modify",
      "old_id": "db030ef2381635d2314b9763884c8ad42f8dae93",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-229339135565173539.mlir",
      "new_id": "84cbdc86ea8c4a8291ecd4e947c663d8e0638411",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-229339135565173539.mlir"
    },
    {
      "type": "modify",
      "old_id": "e4a41b30b4190e944105e69d114248ff3a0a5080",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo1356973389398030785.mlir",
      "new_id": "dc045e6a6e9d817ca4212640d5b0e98c018d03c2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo1356973389398030785.mlir"
    },
    {
      "type": "modify",
      "old_id": "89749f630f55d7f3cee8b10f6199e8bfd4380894",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-2721867853299623403.mlir",
      "new_id": "79a2680974f85c426d94483c893d6408fdaa97de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-2721867853299623403.mlir"
    },
    {
      "type": "modify",
      "old_id": "7ace42eda6046e40b5ddf5c9994d5a2b92e1d43f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8208861813110223290.mlir",
      "new_id": "42350851c4048d27106f44d49d208a7505887ae4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8208861813110223290.mlir"
    },
    {
      "type": "modify",
      "old_id": "773a416b03dbe39e5709616299cba626de7c0780",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-6373449430230855376.mlir",
      "new_id": "bd49db16d10dd747238fbd18e9388fab7e0e0a70",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-6373449430230855376.mlir"
    },
    {
      "type": "modify",
      "old_id": "f3bf6eb318f38f7db7b29724cc950ab39df13eb2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__7302486127658143934.mlir",
      "new_id": "ed9bfcd203879c7347bf9f3d5cebc4a4e4e4aab4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__7302486127658143934.mlir"
    },
    {
      "type": "modify",
      "old_id": "1584d3dcdcbd4a913135cf4091bdcc5731d8f35e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew360761962830156288.mlir",
      "new_id": "7837934d55cb30983ab5b8c5657976adb1edd644",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew360761962830156288.mlir"
    },
    {
      "type": "modify",
      "old_id": "cac4edb62023deb07fa3f5cfe76c970d8bc97a8b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8812456315477330015.mlir",
      "new_id": "7ba8daa86348c3d907c3e007db50d2e4388505f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8812456315477330015.mlir"
    },
    {
      "type": "modify",
      "old_id": "c335e653033007a8eaa6425852e0dc6c4c21b382",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-78009980723520832.mlir",
      "new_id": "8d1461fe5adb95a7c76478936d5821beee2ac825",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-78009980723520832.mlir"
    },
    {
      "type": "modify",
      "old_id": "58b0da9f26a555a4745ecc096cef093773ee048a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind231526804584745672.mlir",
      "new_id": "dde525a72e9f67e903d396b0e687b85e5464a470",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind231526804584745672.mlir"
    },
    {
      "type": "modify",
      "old_id": "6c0c74c776c84f3401d4f291d8a1d30b73c1abd8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u3069527597941492880.mlir",
      "new_id": "c8f4aec136e8ef1b5a1b92b06dd06bab53cd251a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u3069527597941492880.mlir"
    },
    {
      "type": "modify",
      "old_id": "fdecab1e28f6531c6e4011b0ec839610be386c0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u6138003060915204942.mlir",
      "new_id": "c6f616ef9b140d9c208ed55f6c695f3f124132f8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u6138003060915204942.mlir"
    },
    {
      "type": "modify",
      "old_id": "ff5b386de23a3833c87533f11059f314c28cb0ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-3453535066437865765.mlir",
      "new_id": "0fa020b9ccedc389ac2a925aaccc0483f74f9841",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-3453535066437865765.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2385fc913695aa99dd8cf8e6cef4c3718a6d9ba",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd7484757335449695351.mlir",
      "new_id": "c0aad252bfe7e6429a6b7cd7746680473607a8d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd7484757335449695351.mlir"
    },
    {
      "type": "modify",
      "old_id": "c41871b02ae1f00205cea3467d58c5598f92da8c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape2008502797251229853.mlir",
      "new_id": "4b991d3f8fb2f0efa636ce935fcc77125efd9a3f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape2008502797251229853.mlir"
    },
    {
      "type": "modify",
      "old_id": "9ce4d33e47b39474e330d4cc4b9cd492e3030c10",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape9059928969943241058.mlir",
      "new_id": "b19267e257ed851beb165c25be9ff7862acc238d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape9059928969943241058.mlir"
    },
    {
      "type": "modify",
      "old_id": "1787d6dc8f9c6e963c4a463e8dec8c3cb918144e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-6752944464245862548.mlir",
      "new_id": "c799cb56b813527f0900e603c996f4e8c50e41e6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-6752944464245862548.mlir"
    },
    {
      "type": "modify",
      "old_id": "bbc37609da965898f8e06b2866ee91304497f2e6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-6808379694680963614.mlir",
      "new_id": "eb77ad99f353da60ac7ef43182fad455c7f1d402",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-6808379694680963614.mlir"
    },
    {
      "type": "modify",
      "old_id": "bfc6b07c065fa2214b8c03f7b6ed60138b8b3500",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin1465340387020024301.mlir",
      "new_id": "6aae521d16b6f8652a0146ec968b6b2720b5e704",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin1465340387020024301.mlir"
    },
    {
      "type": "modify",
      "old_id": "e92a158e25075c5c543c45784dd99b37cf3038b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin5254831785028503037.mlir",
      "new_id": "4fc087a3616d374f519b6a1a006139d58cbff0b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin5254831785028503037.mlir"
    },
    {
      "type": "modify",
      "old_id": "58a2565ff1155adb043c0fa84d6ac632cca77aa1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-6162849774345350374.mlir",
      "new_id": "29db38eb1aa768f4fe3cb58e6a696e108f245682",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-6162849774345350374.mlir"
    },
    {
      "type": "modify",
      "old_id": "63cfe3b136e4cef2d7b2f5897660b735d8a19988",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow2124728795437520929.mlir",
      "new_id": "54649b933fb09ad68e9ea82cd9d06e35c3047bf5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow2124728795437520929.mlir"
    },
    {
      "type": "modify",
      "old_id": "7406243e6499bcd219fae04200c30bae4a3106f7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin2617421260401081730.mlir",
      "new_id": "5d13bdbde8512349c75618f231743acd3ab55726",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin2617421260401081730.mlir"
    },
    {
      "type": "modify",
      "old_id": "07b3b22332906cc6e53b2181dd17a9c5a1271432",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin8448822445776111624.mlir",
      "new_id": "5c7ec20b4e29c9d56fa24d754a49ca03f6d9ccdc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin8448822445776111624.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f3352796f615839b5004de755107fa95acd7437",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-4016152869797095665.mlir",
      "new_id": "69ba806e4a433a1327eaad722be27739e1cb1d2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-4016152869797095665.mlir"
    },
    {
      "type": "modify",
      "old_id": "723cfb2896049bf7057f7fb0baf71859bfcd3460",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi2385945470013585710.mlir",
      "new_id": "4252fe9e6566a3ecc7212935d6e93a843f767856",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi2385945470013585710.mlir"
    },
    {
      "type": "modify",
      "old_id": "b1b0cc5fd64a4dd8e97043fa39b45bf4a2db7576",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin2679635985562700073.mlir",
      "new_id": "14e4158d4ff544ecf07c69b0eeeb6f8b22295c47",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin2679635985562700073.mlir"
    },
    {
      "type": "modify",
      "old_id": "7e902bed8eb7dbc54eb419d499bc99e85bcfabb8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7808601965039850272.mlir",
      "new_id": "1e7de99b3e313b3ce2d9d9e9aff7b32a547657ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin7808601965039850272.mlir"
    },
    {
      "type": "modify",
      "old_id": "bd10c6d1cc3bbe7b8ccc47694a23ef857e307c3c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-1160369651841163817.mlir",
      "new_id": "eaec2b50ec2833952a9339aa15a4cc64afcc0bf9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-1160369651841163817.mlir"
    },
    {
      "type": "modify",
      "old_id": "b1d9cca623444f6524389a48415cb8693d6d1f20",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew2441965319563582007.mlir",
      "new_id": "e322084bcf4d8c7be2d6d91b9978b1a6c4b804ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew2441965319563582007.mlir"
    },
    {
      "type": "modify",
      "old_id": "aee8f52e3ce59fda0baf55b46588ae66fca8b381",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-4284546542326456679.mlir",
      "new_id": "b7f69f7ad8fd0f23983d2e6104979c30832f163b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-4284546542326456679.mlir"
    },
    {
      "type": "modify",
      "old_id": "837030961879615fcdded3d268f30a3f5570bd56",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-4941197402186890645.mlir",
      "new_id": "edabfe6e148610208fc9d1e4909fa87cba90cb26",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-4941197402186890645.mlir"
    },
    {
      "type": "modify",
      "old_id": "858dc9d3aac51b32e7d2657c3cae870145e7ea3b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat5717897549646019228.mlir",
      "new_id": "a7ff504a8908feb1360ef14f9240ff4138d09dac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat5717897549646019228.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7e8d1a6b01eb31758fac276409ee8843464c13a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat8983247923438467165.mlir",
      "new_id": "9bd3dfb4903bd6d23ecbc548b112ac0d53455c6e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat8983247923438467165.mlir"
    },
    {
      "type": "modify",
      "old_id": "f96ce4aa07518e73d9ed1478a08ecae55bed5086",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-1489473092002645628.mlir",
      "new_id": "83531969179c163b7aaaefa345c0abec28d3401c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-1489473092002645628.mlir"
    },
    {
      "type": "modify",
      "old_id": "9192535e8ca7eed8a9fc3fce9ed251b248cfb72e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi4907939457090036648.mlir",
      "new_id": "456d88cfa199d7f1b449c7cb71a0e07b9c597e22",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi4907939457090036648.mlir"
    },
    {
      "type": "modify",
      "old_id": "6c6f863245466152afd61969c7da16af1faed62f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-231979961555022713.mlir",
      "new_id": "e32de613d4682bf73d6c23304ae34b6da4073a6f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-231979961555022713.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3a097a307b81c80f802011ca5045486fcd73257",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_8754120654496972949.mlir",
      "new_id": "5a353f8a135a33e686da71285ed5e2387b158d33",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_8754120654496972949.mlir"
    },
    {
      "type": "modify",
      "old_id": "f544ec25f71d49db6c5ebafd76307baf3efd3158",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6156571203190694208.mlir",
      "new_id": "4fd9b3b9c93dbafa10eab488e3f0376641c50ae6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6156571203190694208.mlir"
    },
    {
      "type": "modify",
      "old_id": "204682661169ad12df96422ce608c7d64d61fbd6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u7653219651823671808.mlir",
      "new_id": "98f0362ecae41752dc113d235073291380d6ace7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u7653219651823671808.mlir"
    },
    {
      "type": "modify",
      "old_id": "c86d288f842e8fb666a7757483d3546cc28c2e12",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha3560960001983197772.mlir",
      "new_id": "6893c5bb618de45599be36ea569a6cdc66b1c625",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha3560960001983197772.mlir"
    },
    {
      "type": "modify",
      "old_id": "7e6a07b0a4f3d82e19409a18ea53d452bb5feeff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha6359168246041175228.mlir",
      "new_id": "f57665e7283dad82d744541bc27097d6fee63b5a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha6359168246041175228.mlir"
    },
    {
      "type": "modify",
      "old_id": "3597673a12a7d973ea2e457a353adc91f1fc30cf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-3688988568462201922.mlir",
      "new_id": "3521fae802e06ccd08c60a6cbd141bd378fa25eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-3688988568462201922.mlir"
    },
    {
      "type": "modify",
      "old_id": "f2e5dbafec326a32da4e576d6fee7dfedebb5704",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind2534325557785002654.mlir",
      "new_id": "6c5f25b287eafe2b85c3b3d1f1f096b96e95f845",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind2534325557785002654.mlir"
    },
    {
      "type": "modify",
      "old_id": "138ed08fed3759dbad5180b151b0a79976992965",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-8530351583768892932.mlir",
      "new_id": "9399bc71d641f43b4445593e6cc5bacad4589eb0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-8530351583768892932.mlir"
    },
    {
      "type": "modify",
      "old_id": "554a2d4b129f763db242274adb4e94219bc603ed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin2336848997200141272.mlir",
      "new_id": "b6631f32fe7a73daa4ec0a06d7ca67f13abd1ac0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin2336848997200141272.mlir"
    },
    {
      "type": "modify",
      "old_id": "9571a3960d505261e4a015553522c335987f63f3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-1949369266602443161.mlir",
      "new_id": "c9e7290a9afca3c2bc12cbfd3ce40afc3bc35228",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-1949369266602443161.mlir"
    },
    {
      "type": "modify",
      "old_id": "6b67bb7c2bc60b9ce3a52e71fdb9da72c494124d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow1516144548387135784.mlir",
      "new_id": "9207b5eda2f3ad8493b503f65a3f7d1be18bece4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow1516144548387135784.mlir"
    },
    {
      "type": "modify",
      "old_id": "3d571de562f62cbf882a3ca6c3e1c4985212f0bb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-312996440089190260.mlir",
      "new_id": "63361387dbc4a217036aa52b99b93d77809817b5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-312996440089190260.mlir"
    },
    {
      "type": "modify",
      "old_id": "30f293704159791d93725a5b1fdbaf216d15850c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-3855556489712161194.mlir",
      "new_id": "68a128c1daba2ac03ab4583e682315f40b895e4a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-3855556489712161194.mlir"
    },
    {
      "type": "modify",
      "old_id": "a7c1068fa0cd30ea3ac29e6d90283d6dd018fa9f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi1703169112067469677.mlir",
      "new_id": "a558f1247f1b66735fc0f1656c7cf78418880c24",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi1703169112067469677.mlir"
    },
    {
      "type": "modify",
      "old_id": "0865f3bfffdcd90139a821d227c26772131e2fec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi618583376894179380.mlir",
      "new_id": "2fe7a39a7d4806aca0649c19ab191d0f34ce9fc6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi618583376894179380.mlir"
    },
    {
      "type": "modify",
      "old_id": "422247261c426a443a12e9ecdbf3b8f28e97b6c9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-5501066061188023133.mlir",
      "new_id": "65e6c06f361d65abf2a9a67b25210dd45ec24fc3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-5501066061188023133.mlir"
    },
    {
      "type": "modify",
      "old_id": "07a0f8429835e945043a4fc425ca627819791ad2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin8255429920127766752.mlir",
      "new_id": "9b634e81314177da7acd8250fb1b1b79c52d9409",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin8255429920127766752.mlir"
    },
    {
      "type": "modify",
      "old_id": "5069213e9ae8d649b862a810f09897fa1af3b19d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-3145522822460544824.mlir",
      "new_id": "14d15c00d9dc525bcc378f69b62c1d6290763057",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-3145522822460544824.mlir"
    },
    {
      "type": "modify",
      "old_id": "b79eb49b320cee4a405522b74fe4b66baeba0df6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew8234721788552425508.mlir",
      "new_id": "b1cf2345c74e584d75fd15d6477a338bfe490003",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew8234721788552425508.mlir"
    },
    {
      "type": "modify",
      "old_id": "acf4c50ad3f72bc1d6dfcf051b8f99ee0f8c8e6d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims-7729688490175977200.mlir",
      "new_id": "96c702bc406d6951354c7c3c28b70c6f86888fb9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims-7729688490175977200.mlir"
    },
    {
      "type": "modify",
      "old_id": "7259c7608fbb860d28d9287d2bae52e2000200f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims4711489216670640103.mlir",
      "new_id": "d769e6854ebc7120df7f6825df116d640cc00856",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims4711489216670640103.mlir"
    },
    {
      "type": "modify",
      "old_id": "9cbfd102ae083824f6d040d0bc50444d1ae8cc38",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6275639048557222837.mlir",
      "new_id": "ee5ed3939d7ae6053834c4291b7e9a9a207c8801",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6275639048557222837.mlir"
    },
    {
      "type": "modify",
      "old_id": "7ed050ac8bd18d78685c4840c32d1bca0abfd97b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6576522988704498337.mlir",
      "new_id": "84214445cd5320ebdf327a71e5f941d3347dbf60",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat6576522988704498337.mlir"
    },
    {
      "type": "modify",
      "old_id": "b86d4c4c362d131599d4705cb30aafe406e0aabc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi2066102519051268717.mlir",
      "new_id": "d87078b36b3a5314cea84cb4a6109e14899151e1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi2066102519051268717.mlir"
    },
    {
      "type": "modify",
      "old_id": "180a7ded48ef99d7bc158a59b7c0021d2284d621",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi6905061648456258990.mlir",
      "new_id": "baf851469270c1dfa72cb9fd2128f4b379f2a8eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi6905061648456258990.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f7f60de989b75cd3e2317b3b23d5b03f666385e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4268300808812953018.mlir",
      "new_id": "2adc6fdedfab984af93d9a3d58e7b91eaa661343",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4268300808812953018.mlir"
    },
    {
      "type": "modify",
      "old_id": "4f15c494441ec07c83c74694b7dd09d765431d96",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-9153478667077725183.mlir",
      "new_id": "b1fbdd641797608af830c73ad8f1f3a627d1b014",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-9153478667077725183.mlir"
    },
    {
      "type": "modify",
      "old_id": "5c4ad93a344e1681161afc65407c3f9e4dbba7b1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-6157939275883288533.mlir",
      "new_id": "de4364dffea8e9938471d2331c936e4f1d80cc9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-6157939275883288533.mlir"
    },
    {
      "type": "modify",
      "old_id": "4f0bcb44d6de6fa93e84a92d1b1ec3823a46f014",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8511265051077457043.mlir",
      "new_id": "569689c4c6a770ea256a36ac8012c8fa9bee657b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u8511265051077457043.mlir"
    },
    {
      "type": "modify",
      "old_id": "d9ae97ee7687151ae4d7e5117cbf855360c54324",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-2091136672711357126.mlir",
      "new_id": "d5581328daae43b2118ffad81e658725cc0c2a95",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-2091136672711357126.mlir"
    },
    {
      "type": "modify",
      "old_id": "6688216dbc8a0307c75a4fde08f543ea5df52cd5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha796353546737293148.mlir",
      "new_id": "395850486542e750131dd50f85bb717074410aea",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha796353546737293148.mlir"
    },
    {
      "type": "modify",
      "old_id": "5e12d7a72818746c8083488d43617c9b4edd219c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo2689091551362511366.mlir",
      "new_id": "81d884261a2e70d22712f81369c6268a82b40219",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo2689091551362511366.mlir"
    },
    {
      "type": "modify",
      "old_id": "a9eb5f747d20577bde38ddfca5f49eaeaa7a1ca7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo3624303292444803106.mlir",
      "new_id": "a7229b314cdc9fe22ab24e8e4ab207e18f9ef2f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo3624303292444803106.mlir"
    },
    {
      "type": "modify",
      "old_id": "58ef7aa170cf7c104269eb85ce3789c276084b85",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-8504773445311031845.mlir",
      "new_id": "da55dbcdeb4cfa5f4c352035e04dc8de2a901b1c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-8504773445311031845.mlir"
    },
    {
      "type": "modify",
      "old_id": "d8a6c534aff2bb89fec3fa67276d3946b3491795",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind8076236772147644448.mlir",
      "new_id": "b079dba45e3cd9f598dae7b69eb39492a799047e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind8076236772147644448.mlir"
    },
    {
      "type": "modify",
      "old_id": "65c53eb8b3ccb13501b6dbac1521d23426852631",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-1579650891753513969.mlir",
      "new_id": "288f849a57e054dec3f2a224794e4757c8d99014",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-1579650891753513969.mlir"
    },
    {
      "type": "modify",
      "old_id": "abad522b68bd72646608487f2b7f25b62673d77f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd6935007064526363979.mlir",
      "new_id": "67b595a9c796493fcbb6016cab4ccbd1a1a342cb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd6935007064526363979.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ea03d7fe2d1cb490e841dcf95af817a8abc700b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-2961218062536580227.mlir",
      "new_id": "7c85786a3f152f6c8cfd2fa66f23d6903e9311a4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-2961218062536580227.mlir"
    },
    {
      "type": "modify",
      "old_id": "377afcebe40678283e789e1ef6b4f1f07faec6bb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind2771680170207766950.mlir",
      "new_id": "1e728f63d2afde50eaae37b37532694eec2848dc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind2771680170207766950.mlir"
    },
    {
      "type": "modify",
      "old_id": "d0e58791db706c49f7624bad59210c9efc9e6199",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin1983890828044820225.mlir",
      "new_id": "7d64d1fe6a345069026a21b20fcec9fbeae7fcf1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin1983890828044820225.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc58b25c18f64437112257e4d63726fc41b1d38c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin62016766260514297.mlir",
      "new_id": "902495c7f0697512435c27c34b5bf44a49758f40",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin62016766260514297.mlir"
    },
    {
      "type": "modify",
      "old_id": "92dc849e4a86108ad21a05614067574e2bf7fa9a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-692020949637620008.mlir",
      "new_id": "fb2088321ec94f47d71e221c8fa01c7971350811",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-692020949637620008.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a01b9c7382b9c346c7fec69e372c4e589fa8890",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind7583448234884642512.mlir",
      "new_id": "e7fe5420510f327302b1bc523fb447bbe3b03460",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind7583448234884642512.mlir"
    },
    {
      "type": "modify",
      "old_id": "c48518b49c9f72ec5be7e19430e1c9875d6cca33",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi373097052078385741.mlir",
      "new_id": "1e959e371ba53ffe693836f205ac12704ed31096",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi373097052078385741.mlir"
    },
    {
      "type": "modify",
      "old_id": "650e3a9d1fb788cc801f695a87fb2a46390c65c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi5387246296885867613.mlir",
      "new_id": "e6f132ad6fe5221f79eed0dd6cb80b4c9cb7c76f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi5387246296885867613.mlir"
    },
    {
      "type": "modify",
      "old_id": "6f5a7c786f01e294542ea0e207dc19b3b374b7eb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-6261381946082163628.mlir",
      "new_id": "0f48e3bb5805c9a13b4a010681741d1dbe4b5f5b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_-6261381946082163628.mlir"
    },
    {
      "type": "modify",
      "old_id": "04ae56c1dad5f1299ae676153958eb2ac1b669b0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_8998606905763508495.mlir",
      "new_id": "11bed18ab36557295f0b464008a09659fb1f1e2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_8998606905763508495.mlir"
    },
    {
      "type": "modify",
      "old_id": "359ff06f61e503bd5d4f3095624fae46ef73ed92",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update37168508320117536.mlir",
      "new_id": "f7fb24281c9eff3ed9df317a24d4026c82d4c11b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update37168508320117536.mlir"
    },
    {
      "type": "modify",
      "old_id": "1c82a9fec81a80057b10c8c8ebd65eee4d5862b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update4396915468484087491.mlir",
      "new_id": "472bca66ebfa459ff9194272d7873603319146ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update4396915468484087491.mlir"
    },
    {
      "type": "modify",
      "old_id": "03cfc3b3dbf54ca5ec7147d0314c47b03fac31ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-3224467062420307614.mlir",
      "new_id": "c8a490d189e341419c41b556fee7a39c65618121",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-3224467062420307614.mlir"
    },
    {
      "type": "modify",
      "old_id": "149715ce13c54960867745d4aa55832425e7a3bb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin3891239180403390738.mlir",
      "new_id": "feabbe5693933f4f40c6b830648e148a8d892714",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin3891239180403390738.mlir"
    },
    {
      "type": "modify",
      "old_id": "4c0f9a9cf4af5cb92d8338e8b8a2c94429772c11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-2151910845188751696.mlir",
      "new_id": "108c6630859e76fcd02dac6319d22927cb76642d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-2151910845188751696.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c8e18c9153ba6bf18d7cb539d1a3527b9b7c4e7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-2404637618845325000.mlir",
      "new_id": "593adc51f771393b62188fa648d5ef5b42f06d35",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-2404637618845325000.mlir"
    },
    {
      "type": "modify",
      "old_id": "bb97de6933bef16fa2f61cf91007acad5226724a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-572190243029509453.mlir",
      "new_id": "84d3e4ae0bdd476a73805385a450773703c563ec",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-572190243029509453.mlir"
    },
    {
      "type": "modify",
      "old_id": "c396450d1d811c3d32267a41dcfb729fd4200cf7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7668301934060675915.mlir",
      "new_id": "52545f5617e5858f39c2757aaa6151819939b14d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7668301934060675915.mlir"
    },
    {
      "type": "modify",
      "old_id": "e12cd7a0bffce892b7190bd3f80aa3e2d4cdd50e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-115477283981442116.mlir",
      "new_id": "094e6d360e26c9230e50b07f065a55d7df8e5531",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-115477283981442116.mlir"
    },
    {
      "type": "modify",
      "old_id": "521cef6e13a48dd86684c70e678499a78d1c6e71",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-3395923389630413235.mlir",
      "new_id": "345436e34f89a08ec9e5f0dcb4717f5b14f87a44",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_max_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-3395923389630413235.mlir"
    },
    {
      "type": "modify",
      "old_id": "adf60e689d8c3d188c9aa342b2ffed181b221e3e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i1719900046009157333.mlir",
      "new_id": "2b9c3d33ee480d17601bf846aee3f768cbb9192f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i1719900046009157333.mlir"
    },
    {
      "type": "modify",
      "old_id": "4119012a94ac686d60fab93e41b4956cf7043758",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser1719862287393275076.mlir",
      "new_id": "ee24213dc2e0d6b4c5ca7e73cf4027b10436f643",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_bool_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser1719862287393275076.mlir"
    },
    {
      "type": "modify",
      "old_id": "83f73b10b377ba64d6a19d7f9a9946e0ba8813d8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____4352046343394697159.mlir",
      "new_id": "0c8b42e5417f6cf6a07be3d2b7bdd11b567c987f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____4352046343394697159.mlir"
    },
    {
      "type": "modify",
      "old_id": "88030c8956a44c166e8d69366f68aeacc922e4f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in3400391015131318119.mlir",
      "new_id": "8119daba92f9b918beeb15ff82f1ae14bdceccbf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in3400391015131318119.mlir"
    },
    {
      "type": "modify",
      "old_id": "30b3c72e248e597bd90627997f989f528c6d6f07",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in-3152158342664535743.mlir",
      "new_id": "10467d92af3953a98aa1653ff8fde8784ba525b8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in-3152158342664535743.mlir"
    },
    {
      "type": "modify",
      "old_id": "584bbf4ac0cc8989d5c0f69a1d7296e546e23c0c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse7721631736843667759.mlir",
      "new_id": "f072fdad8e32e91ac58efcf50e3d001c0baec210",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse7721631736843667759.mlir"
    },
    {
      "type": "modify",
      "old_id": "c5560ec3d9b9059a6c7cf08be4e0c9d652c15432",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse4043667791730656744.mlir",
      "new_id": "6f83d998690ed8fe49793fe4185462dc06e5be07",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse4043667791730656744.mlir"
    },
    {
      "type": "modify",
      "old_id": "1028916fe1335f8ac047250d153f4cf097376cb2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser7141706196654897674.mlir",
      "new_id": "d55c02d1142a0b930c2305f9a16a6fa17de2acb7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser7141706196654897674.mlir"
    },
    {
      "type": "modify",
      "old_id": "ccbbd2075175f3c74b9a14192358af95c77ff796",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins9124514689364773013.mlir",
      "new_id": "484c1e77906119b0d7c275511e7779f900e20a31",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins9124514689364773013.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e44c98ff778914ef890c7afa9c9e524949cf233",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-4863845320241037762.mlir",
      "new_id": "5c8ecc3f953c90e48e88d8bafdd3532baf601325",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-4863845320241037762.mlir"
    },
    {
      "type": "modify",
      "old_id": "071308598534234f379ad60f960c2ff92b5660f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse534852232021846945.mlir",
      "new_id": "530249a8532c55f09e9d6ff461af9fe0293d3bb7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse534852232021846945.mlir"
    },
    {
      "type": "modify",
      "old_id": "986c84c7db1b875b18f78129fbbe470423da9962",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_indices_are_sorted_shape_float32_5__scatterindices___0___2___updateshape__2___updatewind5825509085618127810.mlir",
      "new_id": "be071c4f8c6e7bca0a3f04abbf6fc9e77cd68a46",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_indices_are_sorted_shape_float32_5__scatterindices___0___2___updateshape__2___updatewind5825509085618127810.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a6063df24fcf4452166baed2f9360688a91907d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-4280126132222170601.mlir",
      "new_id": "282bf55647ac2ad7d3fd52c8807992d9ef5abc2c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-4280126132222170601.mlir"
    },
    {
      "type": "modify",
      "old_id": "7dac19712db80ada22f16756fca5daf0998dc1da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-7030084515635948913.mlir",
      "new_id": "76dc4ddfefeacf2edd4980c63d4ed4fe339b9104",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-7030084515635948913.mlir"
    },
    {
      "type": "modify",
      "old_id": "118dfe8650c267fbb58160dc8f829844810b70a7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-6977587035204418846.mlir",
      "new_id": "caab0e0280a0b5122ec5095735c6092ac51c31b8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-6977587035204418846.mlir"
    },
    {
      "type": "modify",
      "old_id": "627c2bdc8b49761b3f33119ff9689fb312888340",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow794294539857980968.mlir",
      "new_id": "da0f1f2444669fb4a7caffdf97a139b8bc693bbd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow794294539857980968.mlir"
    },
    {
      "type": "modify",
      "old_id": "5507dbd1646d0a01b77ce4da0207e2028ed749fd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-6655058111581649220.mlir",
      "new_id": "ca76aaf86b311623f7e745bd60387f879b455ad8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-6655058111581649220.mlir"
    },
    {
      "type": "modify",
      "old_id": "e9fd0eba64dc26034e27bc365dab4d2f71cd9a61",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up257011455004234925.mlir",
      "new_id": "725d16f1a259d0e1f424a78bc5c15dc2ebdb2e7e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up257011455004234925.mlir"
    },
    {
      "type": "modify",
      "old_id": "905f8120d1e194321dcb22e13ef7e302dd786e80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-2249289855259825998.mlir",
      "new_id": "28a8bcf654ba1d5428fb9565878a8f4c3cb1cb6b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-2249289855259825998.mlir"
    },
    {
      "type": "modify",
      "old_id": "a72c81b48d26fee103f991120330b351b253ff89",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape3597514414725498598.mlir",
      "new_id": "05b3930336e496676befddfc093817e6618fea8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape3597514414725498598.mlir"
    },
    {
      "type": "modify",
      "old_id": "f2ac209be1196e91fead564302a6a5eb08ddffb5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-5074117366129902401.mlir",
      "new_id": "ee0964590fd9b97868588fbc2d27d62dca393cdd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__3-5074117366129902401.mlir"
    },
    {
      "type": "modify",
      "old_id": "51c322bb4681e5bf1de30f1065e05a5fa1aac871",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__34933250815520880524.mlir",
      "new_id": "809fa76025db8a963d4079632a8dd115b71d176b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__34933250815520880524.mlir"
    },
    {
      "type": "modify",
      "old_id": "9fa16a60ea4406aee50bb248d769a28e6ce13549",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_6244259100277537568.mlir",
      "new_id": "75b9ef29b4dcf04370bcb2e64ea841bb6681db6f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_6244259100277537568.mlir"
    },
    {
      "type": "modify",
      "old_id": "c99fea232cf0fab43ab9f8aa622f1136b63d8dd3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_7096135450420072774.mlir",
      "new_id": "4a3be335de061b9b909584c7a049df4f68fc9f79",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_7096135450420072774.mlir"
    },
    {
      "type": "modify",
      "old_id": "f36a29e9576554814954369344f1721380d2480b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-2390111683147858631.mlir",
      "new_id": "dc2d04d7a38d22d9ca1398fa70f946d8c6f6f851",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-2390111683147858631.mlir"
    },
    {
      "type": "modify",
      "old_id": "d42bac1c522c0f93335b0e0f2c9484b87854e85f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_6371101921313517982.mlir",
      "new_id": "4108ef74b0aa7ac1e31c26fb63361e2ea267e98d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_6371101921313517982.mlir"
    },
    {
      "type": "modify",
      "old_id": "8fd22bdbefe989177725898a63ebec4b0a08a10a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd-6220627124317296940.mlir",
      "new_id": "4512b4e30953da4e1272c5d0787465e2772b1b83",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd-6220627124317296940.mlir"
    },
    {
      "type": "modify",
      "old_id": "9cfe6742a791a53824b35432b1d9d0e2c3be9a20",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd4569219469464053131.mlir",
      "new_id": "d740f58ad3d27d111eec18edd34253b7dcc44f8d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd4569219469464053131.mlir"
    },
    {
      "type": "modify",
      "old_id": "2363ec62748e4d49153ca80de38b1ae9f18b85f7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_4356686229420019100.mlir",
      "new_id": "e60e120b05e8a009487016093373dc3d8a1c1e27",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_4356686229420019100.mlir"
    },
    {
      "type": "modify",
      "old_id": "df9f043f980d03e5da9f14f1353bd56182192ce9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_8694718717423353139.mlir",
      "new_id": "2e203b0b5c962d09084987b5bb0b51892ee7fcee",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_8694718717423353139.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d0797ead2d78d69fd4c57e10d1e7dfa7942961a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-8316221048643743799.mlir",
      "new_id": "e60669105c8f068f2c85088aeaecf0792806b13d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-8316221048643743799.mlir"
    },
    {
      "type": "modify",
      "old_id": "513b898da577855b0df3836316c9bf006f876edd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-857194216228152443.mlir",
      "new_id": "2cbaa1f661667bbef8e7cdea8f90f509256daab1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-857194216228152443.mlir"
    },
    {
      "type": "modify",
      "old_id": "1ff7692e7d44aae769ab79d7ea83972a01aa0e02",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-714900388043421455.mlir",
      "new_id": "dbe572853d9beaf58e2ca3f94733bb4f6b97dfcf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-714900388043421455.mlir"
    },
    {
      "type": "modify",
      "old_id": "3dd19dc6b6dd8beac7135e0b6d43541020db7087",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_294168853516180589.mlir",
      "new_id": "33cafd6c9d6eed9d5516a720d72117b1d1141df4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_294168853516180589.mlir"
    },
    {
      "type": "modify",
      "old_id": "1462d1debe7aae6ce9785ed579c65807b344524b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-1592233629693916822.mlir",
      "new_id": "3161ea648404ceba1eecfa9771d392bafbbace8d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-1592233629693916822.mlir"
    },
    {
      "type": "modify",
      "old_id": "9ab44d937f7c68721ba85167a019be5387bcdf3e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4570510485399197673.mlir",
      "new_id": "85a411cc53368a11cf24bc56fde15dea4a84c929",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4570510485399197673.mlir"
    },
    {
      "type": "modify",
      "old_id": "4fe9956d8ace5f5af9ad9df5ef633bb4a9f2d91e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-8091195660655238031.mlir",
      "new_id": "ad547a95653828c1f0a93df3ee70155c9c99874d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-8091195660655238031.mlir"
    },
    {
      "type": "modify",
      "old_id": "a989de175d51f38076fc66a1c47a583539cac57c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd3680312855999364491.mlir",
      "new_id": "b58bdd72d02d8df64191683b1c7f25a7cfe52ea0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd3680312855999364491.mlir"
    },
    {
      "type": "modify",
      "old_id": "41600091f9125c5df10de54e465352275ea18b8d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-3099664615390500206.mlir",
      "new_id": "177cc1508b6b590e35d0597a842b35297ffa9b2a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-3099664615390500206.mlir"
    },
    {
      "type": "modify",
      "old_id": "31b17fac964fce50468f7eeb901a97068420aa11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_4115365008761471583.mlir",
      "new_id": "31431867abdb856ce5571e43f3928a035de0e60a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_4115365008761471583.mlir"
    },
    {
      "type": "modify",
      "old_id": "aa2551220b89826542d5bbd467eeac38b1d97fa2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_-2626246477929477630.mlir",
      "new_id": "e6526ac3a333ad45e5a9b9f3802766a61da76a91",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_-2626246477929477630.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b1d857ec5a4fe5b88ea860940c608f8cafa5c94",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_5421303431107764636.mlir",
      "new_id": "ffe514d39aa21c440633b43a3555d418c7d5e438",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_5421303431107764636.mlir"
    },
    {
      "type": "modify",
      "old_id": "a5b419492b30aa9790d6d99325ce985c03d1656e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4098451780701630155.mlir",
      "new_id": "33fefac11f3b2bb763465ca9d9399079007a3188",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4098451780701630155.mlir"
    },
    {
      "type": "modify",
      "old_id": "0388f2a0bea8383090708cc0bfc0ab343048aefd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4943527707746498712.mlir",
      "new_id": "0b41af4402dcd3b0623f6394f52015b018456547",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-4943527707746498712.mlir"
    },
    {
      "type": "modify",
      "old_id": "218d09bede4ffe0bc4fbc9b748e12390c4b48211",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-3971564147856755499.mlir",
      "new_id": "035dad21633d1340af6ee10d906ed004f22923c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-3971564147856755499.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e8d1c12261e630dfb7c7bb45c0e7f1224d56146",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__7215406999342465565.mlir",
      "new_id": "c94b115697696f741f3caa32bd1cf02c28ebc1a5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__7215406999342465565.mlir"
    },
    {
      "type": "modify",
      "old_id": "61c5d9c1bfa1f6395a63acada3eaa257491ff9c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-2407133498544979633.mlir",
      "new_id": "232c0782f454370058188bd6623cd4bd746d0ede",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-2407133498544979633.mlir"
    },
    {
      "type": "modify",
      "old_id": "c426d059ca6fc12e8f78e808dad9545e9d8acbf5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat707246471925448235.mlir",
      "new_id": "05cf25945b4ba95f808ffa2c84413986933dd50e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat707246471925448235.mlir"
    },
    {
      "type": "modify",
      "old_id": "f0fc140bb9ff4c62f9b5b1d8f383c8b43757d825",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-3082733421359615550.mlir",
      "new_id": "5b94ca5c8e3aa86d8107cab836e0f1633a47eb8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-3082733421359615550.mlir"
    },
    {
      "type": "modify",
      "old_id": "4ed2c2a5420051356b591b194867a945dc8cfbad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__21853808655309087749.mlir",
      "new_id": "63b3dcb3da7320074e8fc6510192c7e163b9bd13",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__21853808655309087749.mlir"
    },
    {
      "type": "modify",
      "old_id": "2047231134a06c734fd1dabc05af6fb0b771d5dd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-3168049263500542045.mlir",
      "new_id": "eaea5b5477bfe689ba2842bc852ee5dc0a80da98",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-3168049263500542045.mlir"
    },
    {
      "type": "modify",
      "old_id": "9bb8136980179b686ea5873446452f7c1f8d8afb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-4612044676003355777.mlir",
      "new_id": "2c3130d8c16e35a8a69cf7d2fae2c8b6b1a8d6c0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-4612044676003355777.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b8c594083eed74b03a2cea8ce87e1c9bfe2baab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_44884154015831063889.mlir",
      "new_id": "6b9ff34c43da94c2879762cd3ef03a00a402dc05",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_44884154015831063889.mlir"
    },
    {
      "type": "modify",
      "old_id": "07ceca8de04fa6338aca1d2ad60b1014846949c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46191447577027647775.mlir",
      "new_id": "a68506bfd7e6e9bfe89b58a02c32491a1c5a6d27",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46191447577027647775.mlir"
    },
    {
      "type": "modify",
      "old_id": "4d5d6054222c51ada1cde004aa8d9c2c88f47610",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u6262865648268185343.mlir",
      "new_id": "dd2055ca5dbf39027ff9d3e2d8ac41bffd361bd4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u6262865648268185343.mlir"
    },
    {
      "type": "modify",
      "old_id": "9acb5b57b4bd3e5331dc928b38f002716971597a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u8732534266313544978.mlir",
      "new_id": "a41c7961e314fb46f5b8d1202f4192e9f9578755",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u8732534266313544978.mlir"
    },
    {
      "type": "modify",
      "old_id": "f125f5a3f8bbc1d629d573fd5923cc6aafde00c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-7343798520741133620.mlir",
      "new_id": "8dfc003e63c9a8764f2ed355f52ce8c9db5b7c08",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-7343798520741133620.mlir"
    },
    {
      "type": "modify",
      "old_id": "0db545738bd1db620530541bc0514b7a4d9e941c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat8346955452553751621.mlir",
      "new_id": "ff8bcdbb8edccc23969c00137a5669c75303acab",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat8346955452553751621.mlir"
    },
    {
      "type": "modify",
      "old_id": "50a400e52b9ad00315786ab8a1861fa4e2aeac43",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__21575384273124453539.mlir",
      "new_id": "4b5c3bd92c7236fe6949d230c8302929fe240822",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__21575384273124453539.mlir"
    },
    {
      "type": "modify",
      "old_id": "9c140f5a6d452510b5914d451a0131114e193b16",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__29049572619063429077.mlir",
      "new_id": "e962fef332a4fa0779e10a942db652a1ac8b7c94",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__29049572619063429077.mlir"
    },
    {
      "type": "modify",
      "old_id": "6abe480bcc6512cef9cc8cf1f719df104c4084df",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-4492180260379123575.mlir",
      "new_id": "153cd314a7518ee01b6fa3e9d9b0a88c66b8f407",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-4492180260379123575.mlir"
    },
    {
      "type": "modify",
      "old_id": "f0580902fafd9e1d8fb8ae9719f7e6a81faa8608",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-6804281654964710260.mlir",
      "new_id": "3a6ab590f0368f964bce4baa8b7f142fd18ed26c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-6804281654964710260.mlir"
    },
    {
      "type": "modify",
      "old_id": "b0be3a9ac765f397fd12164acbcfe02528c2380d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-8085552538497462086.mlir",
      "new_id": "08973b7679566e64ca6bd357a4078937a206b70c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-8085552538497462086.mlir"
    },
    {
      "type": "modify",
      "old_id": "3188c60eb5a9d68b2c5198cc452ee82027c60108",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_48915394162869716664.mlir",
      "new_id": "7eaad8c84e9d1fc0b9c478425c4d28e82a540de0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_48915394162869716664.mlir"
    },
    {
      "type": "modify",
      "old_id": "2253456bedde6640fd7864fb08a02b4c711a0b68",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-4091295550652669529.mlir",
      "new_id": "bea3ba4eb74a81876732032bf9fde1396310ce06",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-4091295550652669529.mlir"
    },
    {
      "type": "modify",
      "old_id": "37e10b7a2e18cdd6a6fa039ab15ddd1a9fe3fe12",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u549801763074919359.mlir",
      "new_id": "c210c45d043726e409487c96b544be6d8cf5d71d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u549801763074919359.mlir"
    },
    {
      "type": "modify",
      "old_id": "d101f69db213d968379cb2a09c7802bb6ecb6806",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-1360754318140092109.mlir",
      "new_id": "cd56e873556c2b69a77c51cd1f49e47bb1d00eb9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-1360754318140092109.mlir"
    },
    {
      "type": "modify",
      "old_id": "5a23cd0daaa27adef28302e48d45fa18b704eb80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-6651041623792386111.mlir",
      "new_id": "9312f35a3d7969ca9ac0605af71f5681ec497579",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-6651041623792386111.mlir"
    },
    {
      "type": "modify",
      "old_id": "1da6643251d4215721a6e8c64ba4cb813f884b00",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-2225969877503185882.mlir",
      "new_id": "83821241665eddae90bd35a78f91f5d83393f886",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-2225969877503185882.mlir"
    },
    {
      "type": "modify",
      "old_id": "4fc899d80e2dcfa658408bda416dad7517aef948",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-3742461097496387086.mlir",
      "new_id": "297dc4b9b588c4e36e7df4b6af6f7e7817f4dfca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-3742461097496387086.mlir"
    },
    {
      "type": "modify",
      "old_id": "0e4d71ef4c472302d88a8835764932259a021fd1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-7764254308842032551.mlir",
      "new_id": "0abe451ba469b7f715a772b098029d87662f2712",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-7764254308842032551.mlir"
    },
    {
      "type": "modify",
      "old_id": "560c5cb250765d5e368dee88440ee9cacce5189c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_23450775816481210993.mlir",
      "new_id": "59ea20cba3a814c989be3843d5b1780bd2eff516",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_23450775816481210993.mlir"
    },
    {
      "type": "modify",
      "old_id": "bb6b23f0c68b4196dece4f52b3beb12dd0a5d93f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-6591631366574437153.mlir",
      "new_id": "506d2151601a0ba563e0d7bb625c3be0cfe7954d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-6591631366574437153.mlir"
    },
    {
      "type": "modify",
      "old_id": "11a1d154a1b75edc99a67c072fa4db7228da5a80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-8706909794187844482.mlir",
      "new_id": "8351eb3e01f547feb1c2a99e82c16a1d72ed618d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-8706909794187844482.mlir"
    },
    {
      "type": "modify",
      "old_id": "30487d410f227eb9d397e41302738ceebe7c20da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1297660150798520786.mlir",
      "new_id": "7c3d419160e5a5ab1c5f00926d2904d0187e79e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1297660150798520786.mlir"
    },
    {
      "type": "modify",
      "old_id": "8ba61b6c59919dee272ac07d4227454967a46bd2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up6318457899351731724.mlir",
      "new_id": "633531b335f1fd5398c7153c84d156de19dbd292",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up6318457899351731724.mlir"
    },
    {
      "type": "modify",
      "old_id": "2533f475fc6722a2a774f2ef504f7b175650c339",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda5207510223195637833.mlir",
      "new_id": "ebfac2e5f74ea72bbc06882c136e39a77a22536d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda5207510223195637833.mlir"
    },
    {
      "type": "modify",
      "old_id": "aea896a4024c8fd627f64eb8f71ea17fec21c710",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda6262798125151336282.mlir",
      "new_id": "c6819c55605b1598850d1b4f0a9639efca07ad2b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda6262798125151336282.mlir"
    },
    {
      "type": "modify",
      "old_id": "d43dbfa1688665debd295a302eb814b8bc740156",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-8656143665335338128.mlir",
      "new_id": "d9b7311647ceb0f5786a2d882e813a6cb502bc75",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-8656143665335338128.mlir"
    },
    {
      "type": "modify",
      "old_id": "a1465a296fa760b851e5f9dcf8259ceb19c26a26",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8667165760414880574.mlir",
      "new_id": "63b989b8cc32ca1073e5fca09581c5025106bd0c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__8667165760414880574.mlir"
    },
    {
      "type": "modify",
      "old_id": "2d46d523a3a13f794917713f4b2a8094ddea4a56",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-4608489474011168533.mlir",
      "new_id": "ce0eb85d89d5e6fd7803fec4efba229a331ddcc7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-4608489474011168533.mlir"
    },
    {
      "type": "modify",
      "old_id": "558c14eaa6b92fc66b68c23a601b5c2509e337b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_54655453964880485515.mlir",
      "new_id": "678746a15cac084e35ce121c3f9e381270b26982",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_54655453964880485515.mlir"
    },
    {
      "type": "modify",
      "old_id": "c5460af6c09bb78792a744e56a3025f7e22f73b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-8520820431443740876.mlir",
      "new_id": "f474dd5634a4c12c751ef8fca561ead0949d8b52",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-8520820431443740876.mlir"
    },
    {
      "type": "modify",
      "old_id": "7d6db1e9a879b892938359ac53bbff6e6704cbb3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_3572500993044654711.mlir",
      "new_id": "7f2ea4461078a60dbea5b2dc1c7454b2edeaf791",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_3572500993044654711.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ea94931369280b915b729575e5b644068a747ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-7867920288811157954.mlir",
      "new_id": "e5c5820c8f4d341f5953c3b05a5398eb63ef5f76",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-7867920288811157954.mlir"
    },
    {
      "type": "modify",
      "old_id": "388b28c04085399bfd860edbfb0403c9fa1697e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___8720268492036459268.mlir",
      "new_id": "6d9f361fcfbad6a47f6ccad8e021d1708cc4fa3b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___8720268492036459268.mlir"
    },
    {
      "type": "modify",
      "old_id": "267b20e98aaaa1639fb32e81e89401e20b860f4b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-2091068717007306664.mlir",
      "new_id": "da3b131d753abb52ca0b0f753984501edf6eec67",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-2091068717007306664.mlir"
    },
    {
      "type": "modify",
      "old_id": "797108f0d4a3f0b7aac0e98319b494b7ee9a4e9f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda8120988465709075289.mlir",
      "new_id": "cf6693855ee7597493de2573bf569ee293143d11",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda8120988465709075289.mlir"
    },
    {
      "type": "modify",
      "old_id": "061be8cea5bcafa1ba84e0b4a0377a5cfc8ecf83",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-8786096591665500031.mlir",
      "new_id": "14faf302701614be0de7fdcc551344d64ce21ea9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-8786096591665500031.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee08d9537bae87ee90648f632ddbff55abd2c909",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__1436396732987470658.mlir",
      "new_id": "237a20c4aad340869bdc2188dc7b9e8ae834d8ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__1436396732987470658.mlir"
    },
    {
      "type": "modify",
      "old_id": "202b844ecadb2f9ad956ca33b7addef8a926a510",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-138328594848753004.mlir",
      "new_id": "7e2adef6b6f588d41681ca33f889bc904a515593",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-138328594848753004.mlir"
    },
    {
      "type": "modify",
      "old_id": "38e080517de17e878b0889f845efc10eaa30206e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-823404253934322853.mlir",
      "new_id": "cc97e8b08c7c652b0e77556e434c2d4d1e28e52e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-823404253934322853.mlir"
    },
    {
      "type": "modify",
      "old_id": "f861bcc31732210cc1cd8b7160b4f3d830a3f042",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-7530330949824434259.mlir",
      "new_id": "70f84f82063876d2789f2590b170bf3c0b7ae22c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-7530330949824434259.mlir"
    },
    {
      "type": "modify",
      "old_id": "a4e3b2f0bd7d64436d2480b82c1823ae7318fbd1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_5820078437345868748.mlir",
      "new_id": "e13d2e2b9002aa09f42ed80d45fdd89de5d8df92",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_5820078437345868748.mlir"
    },
    {
      "type": "modify",
      "old_id": "343e0db6b8f521febe9ac95a42321c0027db4cf5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-129985155865775457.mlir",
      "new_id": "9f232f0b76ad748f081ec4c03a98d432cf806e78",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-129985155865775457.mlir"
    },
    {
      "type": "modify",
      "old_id": "3327bd0caf380007205a300ef4f35476bb240063",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___2343539028412553554.mlir",
      "new_id": "da0c316e3bef3aa6586a747d23249ce0f8c0ab9b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___2343539028412553554.mlir"
    },
    {
      "type": "modify",
      "old_id": "4c13ac0ee960e1b90b84cee58a73db9c766fa9c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-1272592393935837253.mlir",
      "new_id": "d8c249b75a6bee8fcaa368ba65891b0a2772b5b8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat-1272592393935837253.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f9e5d7ec1605e15d9942fd7a032c23fb872cef8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat4425389787711593969.mlir",
      "new_id": "7a35011ddb4ebddce650f81e016f7d69a6add2ee",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat4425389787711593969.mlir"
    },
    {
      "type": "modify",
      "old_id": "f38ff9f83b698220dfbe6aef8e676605eec4759c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-3410694954850677544.mlir",
      "new_id": "490b4b9636ceb6a396d3cedaf7c5c64d645be25c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__2-3410694954850677544.mlir"
    },
    {
      "type": "modify",
      "old_id": "3aaca4e3d27e2be77306b9cebed07b282d3ee28b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__29203764322210362910.mlir",
      "new_id": "08af3d140b298a96c703525f0124036a405fb5d9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__29203764322210362910.mlir"
    },
    {
      "type": "modify",
      "old_id": "bbc43531f03c4fa8ea7ad3a5a37e6ff3561c75e4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-7295488856326444060.mlir",
      "new_id": "4ebf18aebdb5ff216f7fefa28d180d06916fd31a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-7295488856326444060.mlir"
    },
    {
      "type": "modify",
      "old_id": "34a6241bb226b4741fb26b8fc00780bcddf02352",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_3070699946697361877.mlir",
      "new_id": "3a7cf34c43b5aafe85ce9aaf2c6c18009e037d0f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_3070699946697361877.mlir"
    },
    {
      "type": "modify",
      "old_id": "28800093234865fa6f13819ea5fd62c176debbb2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5549751385104158980.mlir",
      "new_id": "015728bc8bc45b4e399208112f8d857f9cbf0dfe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5549751385104158980.mlir"
    },
    {
      "type": "modify",
      "old_id": "ae9f8c9d065fd0c99ff722ddaefda6c6b8032fc8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5718248314471681435.mlir",
      "new_id": "57624eee3db1ed9540c3c5e4a58c04cfd7c3cc51",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4-5718248314471681435.mlir"
    },
    {
      "type": "modify",
      "old_id": "19102373bbd3a695f6bbf6ac5f2b48e62bc64e2c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-5425130638233748095.mlir",
      "new_id": "0bd5f27f9924336cde24ff3e1575d98622335e57",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-5425130638233748095.mlir"
    },
    {
      "type": "modify",
      "old_id": "1498e4b19b33a5a9ce979762b2ac9bc738f65bc2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-6732484422315882264.mlir",
      "new_id": "ec324b7cba69c0359aa700299079418411ac8ff3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-6732484422315882264.mlir"
    },
    {
      "type": "modify",
      "old_id": "786aa552f3f2c88faccfcfa327e9e6b6bef28a18",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-8455060674813840089.mlir",
      "new_id": "679285ff3511672c8462213b1816ba8b890ab95a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-8455060674813840089.mlir"
    },
    {
      "type": "modify",
      "old_id": "2ec260306cbb816249ad30112977849e6f6a30a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6988113685815211566.mlir",
      "new_id": "e457b07c285ffe1e368e6903ed99a4c4cbe12fd0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi6988113685815211566.mlir"
    },
    {
      "type": "modify",
      "old_id": "05f89e53b533882d7fa45581aaea7ec231c385d5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6079948891887161857.mlir",
      "new_id": "04e16e38952a516d5bf5446e90d4514eb74bc443",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6079948891887161857.mlir"
    },
    {
      "type": "modify",
      "old_id": "b8eb10fccaa3674d9783d475ccefea41258741fa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6549659875295259688.mlir",
      "new_id": "6357746491e576bdc94ca8d8639d8e3aff0f493f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6549659875295259688.mlir"
    },
    {
      "type": "modify",
      "old_id": "6eecaeecb2a1c9e21d9674da8873e5d46bed026a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind3824046247028131474.mlir",
      "new_id": "efe3855d470053ddee94f7be6dfab6d019ecfde5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind3824046247028131474.mlir"
    },
    {
      "type": "modify",
      "old_id": "32b102d626032bbc4dccc20eb21f619719a3c48a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind7836302535510859558.mlir",
      "new_id": "fc35a25a398578f84406a36702f352c66b711d26",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind7836302535510859558.mlir"
    },
    {
      "type": "modify",
      "old_id": "ae41c7276a3d471cc980296b66ac57830dad5f8c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-2507891561465170673.mlir",
      "new_id": "247a65588879815132093e2420129cc6901aea44",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-2507891561465170673.mlir"
    },
    {
      "type": "modify",
      "old_id": "fa4e5a4a40f51f5a872fc2dc63ba6e13856227ce",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-4606238653677723928.mlir",
      "new_id": "219ee12b5a93df11157f09ac3c5d9ee0b65ace5d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew-4606238653677723928.mlir"
    },
    {
      "type": "modify",
      "old_id": "2dd032d0404e6c9534942b08595255e26129ed2a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update3838801698297708086.mlir",
      "new_id": "b5d70c4ad65f4fc2f290e448fefc61fad0971ea6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update3838801698297708086.mlir"
    },
    {
      "type": "modify",
      "old_id": "083f31e9dbd94a0621da30a6cab58175eb240763",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update8582144022432454162.mlir",
      "new_id": "a14652629fcb02ace5f519b1f87338f38a57a352",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update8582144022432454162.mlir"
    },
    {
      "type": "modify",
      "old_id": "7eb271d72fe7297f1352e43bcf7ee976123e1810",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-3499019506028152780.mlir",
      "new_id": "e32627a7153b560959982355f4caf2ac36318b78",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-3499019506028152780.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3ccb778d7c836ac12fd5d919f00541624f435f5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-5731561847796673736.mlir",
      "new_id": "6fd1d4f81ca21caea22e93ff5c976f962e01038d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-5731561847796673736.mlir"
    },
    {
      "type": "modify",
      "old_id": "d5fdb136a20121a34e1f75e36fe26191e35172c7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat9063298096984913623.mlir",
      "new_id": "a94995f9f244caba399f97fe524744a8cc8fd64f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat9063298096984913623.mlir"
    },
    {
      "type": "modify",
      "old_id": "4829e658fec4143a808e967c04b427c04bc8641e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat9081076048855731653.mlir",
      "new_id": "037e5bcdbbde5f1512c4ba1bc1f5405c73e8f14f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat9081076048855731653.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e9db3d3abb4d627d8a63412635926e8e4d4df0a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi4014730839607642488.mlir",
      "new_id": "74f02737b7137a80a09067439400b9cabfe6dbcd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi4014730839607642488.mlir"
    },
    {
      "type": "modify",
      "old_id": "964c67e989404f550459aa40590450d53e8f04dc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi6405466108572526127.mlir",
      "new_id": "97c9dd4e1b71a575edbdfc5c445c87d4cfd2afd5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi6405466108572526127.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a091cef2b01241049027b9e4ef810d4c7cdf45a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3563814370155075944.mlir",
      "new_id": "f3898911cbc8a9ffa99c51b42b8428186c128b0b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3563814370155075944.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a8728d9e4100f71e40f76c68270bf04060ea370",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd8749611313497629157.mlir",
      "new_id": "5d3ff4ef03341c20d07cdb7d788f5d10c28fb330",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd8749611313497629157.mlir"
    },
    {
      "type": "modify",
      "old_id": "432bd515c1edfbdd4d3dedcfd2ab21b074851dc6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update3767757828594658078.mlir",
      "new_id": "d7ff8e7e32bb2fc734fa2dc579b6b95f2417339f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update3767757828594658078.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7d99c831666d4f25bce53d577f6acfab2ba7f81",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update3837990416671658082.mlir",
      "new_id": "7c760a301ba0964977dd2b5ec11dae6f56db2d1e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update3837990416671658082.mlir"
    },
    {
      "type": "modify",
      "old_id": "22fd6096b489b5befb9042bdb10a1f09c2117cd2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-7532755016762737811.mlir",
      "new_id": "59ccf8ebc7e1ee6b5d81652e5bbdf92722411d37",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-7532755016762737811.mlir"
    },
    {
      "type": "modify",
      "old_id": "0cba7885a4c32404e31f8b6a39307030308efe8f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_8460571233850253931.mlir",
      "new_id": "f9846de324c22d862e457da509d0489330722b02",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_8460571233850253931.mlir"
    },
    {
      "type": "modify",
      "old_id": "21d9a31fdff66ffea060b290787442511cc56654",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-3281381171658143616.mlir",
      "new_id": "2181637c33b63946fe95fcc145ab12f6caf69375",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-3281381171658143616.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a098e5423a3d5649a66ab4f74037b26abecdc70",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___7895186756503018450.mlir",
      "new_id": "7a00de87901a489b7a3ffe26d2272b31012fbec3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___7895186756503018450.mlir"
    },
    {
      "type": "modify",
      "old_id": "2e02c572398b5f5f28e7532aeb8ba253b4cb0a4c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates-7133135434776847571.mlir",
      "new_id": "9d45508c37beb6715e176425bfe509d2e4cede3f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates-7133135434776847571.mlir"
    },
    {
      "type": "modify",
      "old_id": "1367d6bfc67c995c52dbcaec28d30faedbc5ed86",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates1992556058291306227.mlir",
      "new_id": "8f07092ab72373ce39c3af49e9bef092753cbf50",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates1992556058291306227.mlir"
    },
    {
      "type": "modify",
      "old_id": "84b234caf7e2c3510aa020a1cd180b921d6cfc1a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-7219620919170275402.mlir",
      "new_id": "296c38a8ec9a5adbc6d616b524bb406deae30205",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-7219620919170275402.mlir"
    },
    {
      "type": "modify",
      "old_id": "9e48cf72cd37a73e5057be4008485bad9a9fad5c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin2019808635615422103.mlir",
      "new_id": "4a8273a87dc304f18a8c27817dc4e8f93d7159e7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin2019808635615422103.mlir"
    },
    {
      "type": "modify",
      "old_id": "22ce5bf2adf7360455364b68f993888939cd66c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-1154839571289251294.mlir",
      "new_id": "bf8b0a437b01c2eb88321df097ff8b0576b41b6f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-1154839571289251294.mlir"
    },
    {
      "type": "modify",
      "old_id": "7ce4672c2c9ee02e5dfee738411266a20c78000d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi5444842911984533710.mlir",
      "new_id": "ddd6dd817e1e24dece5495b5abed1bca6d95a296",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi5444842911984533710.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3154632f3263f646e8bf501f08ea7e79f627d1d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-2950411685828876999.mlir",
      "new_id": "bec062a596091e06094a6202346ce1ad1d87953f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-2950411685828876999.mlir"
    },
    {
      "type": "modify",
      "old_id": "be31027cdb1c1cbec56c0ebe1d3469af807e57d5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo1094744759700233541.mlir",
      "new_id": "ef1eed3ab504f3be5a6e162414c73959d8cae539",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo1094744759700233541.mlir"
    },
    {
      "type": "modify",
      "old_id": "e9cfdce8d0dcfc087f0838589235e8b6401dc417",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi3333288523443268181.mlir",
      "new_id": "e73bf34581e674e50b2014e8b66a3b74c291a729",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi3333288523443268181.mlir"
    },
    {
      "type": "modify",
      "old_id": "d4a13436abda7f5368b0a68417caef4f9ceb83ff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi422102818376078865.mlir",
      "new_id": "42dc3800adf4d0a80b9b7920a4d4860a74c123bf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi422102818376078865.mlir"
    },
    {
      "type": "modify",
      "old_id": "8227540a058ca56c7a2572cdb045ce2c442706ea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-6181263443370822618.mlir",
      "new_id": "37268db9409f24accc11382dab6d1b1011a9eedc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-6181263443370822618.mlir"
    },
    {
      "type": "modify",
      "old_id": "21f85bbdb792e86bc1ce8ffde4a32fb2471cc24d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-6433087509074096220.mlir",
      "new_id": "efcb9bc4946f8aa9236326e0825fbf06181c2a6d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew-6433087509074096220.mlir"
    },
    {
      "type": "modify",
      "old_id": "92ca59527cb6d8fa0e808ade34046643f590fb2e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2252964348354275925.mlir",
      "new_id": "4649786a76db3fdd910f77f7af91afe5cd454d9a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-2252964348354275925.mlir"
    },
    {
      "type": "modify",
      "old_id": "90105b83b3e0a267f772467aecfc6cb6de31f3dc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi7411317443831486478.mlir",
      "new_id": "f213e6f94a9c509da49259faf4f4f1f7f21bd842",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi7411317443831486478.mlir"
    },
    {
      "type": "modify",
      "old_id": "6ca45385646db46c144f199f71aa82b337da0003",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-5100689976626851558.mlir",
      "new_id": "4cbb6d95b9921dbb9b26174a56550076f3e34dc2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-5100689976626851558.mlir"
    },
    {
      "type": "modify",
      "old_id": "90928fd6be047d2df4ccff424991e31252274c54",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update9033995531765975800.mlir",
      "new_id": "65fefd5a80ef9e54fb5f126dc73e48656b531f77",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update9033995531765975800.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e1e4c555a5b3b2eeb9cd60039f4a1eba7ab6afc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7066819620180239285.mlir",
      "new_id": "fe94cfa01d065581f63490e59caa38577548ede6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7066819620180239285.mlir"
    },
    {
      "type": "modify",
      "old_id": "802c28dab1182785659938807a23ade13adace2e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7801774742063109687.mlir",
      "new_id": "6387e09602d3ebfab3f48af864b696a246c43e65",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7801774742063109687.mlir"
    },
    {
      "type": "modify",
      "old_id": "7df04b7e137620700c4b5948d3edb625f9b327ca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda630720772185460788.mlir",
      "new_id": "2f4f6a0b65e711c8ff1dffb111720b08fa0dfcde",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda630720772185460788.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c19816fff090f35602260ae5949d6e1a61c62a0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda678556358992363704.mlir",
      "new_id": "aa4ccfed96d0ceb42c65be1b4d75169d95a91b18",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda678556358992363704.mlir"
    },
    {
      "type": "modify",
      "old_id": "71e1e9f92938f82c4242e83f6dc0de6ccc2cd8c9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew6849606337113289247.mlir",
      "new_id": "5892ed4eb1e0c55407e5d1c0fb9f0af423b2c781",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew6849606337113289247.mlir"
    },
    {
      "type": "modify",
      "old_id": "a54a05bbf5a56c415a4f535a6c3d871ff6d165dd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew7952926376746779189.mlir",
      "new_id": "9fee6d5f838353b1a5fe3a5f3632ad3c67b8786d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew7952926376746779189.mlir"
    },
    {
      "type": "modify",
      "old_id": "d02f33cd8c8c6ed34dfe2e4adab4025fe2ebadf1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-1846790892893359733.mlir",
      "new_id": "dda327e0327565206b1acdc94d6d90e8cb72ddce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-1846790892893359733.mlir"
    },
    {
      "type": "modify",
      "old_id": "415c55852d58c715562f309fd1a3c47d60b193e9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_77771727832633254392.mlir",
      "new_id": "6fc281739c5a361df19bfc77f16df6b7f44c996b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_77771727832633254392.mlir"
    },
    {
      "type": "modify",
      "old_id": "70a982491a8b79106c492e0402a0b9985a1e7b2a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____3311700604022838238.mlir",
      "new_id": "4f406f47e422906b619cae2cd9ef112d9ce1a283",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____3311700604022838238.mlir"
    },
    {
      "type": "modify",
      "old_id": "237f3311fc7806286eebfc5004c18189c958560f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____6631360807004031578.mlir",
      "new_id": "75e8670f38004c52bc1af8bf1eb57d195a3ee580",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____6631360807004031578.mlir"
    },
    {
      "type": "modify",
      "old_id": "98d37a4847661f8aca97ca71200cfb62b484c968",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-2441375675325881794.mlir",
      "new_id": "609a5a90a5d3e0a3a10a03f1aa349ac925791705",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-2441375675325881794.mlir"
    },
    {
      "type": "modify",
      "old_id": "46ebec156254e995ed6c7befecd6a79c544c76b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh4339301259731857950.mlir",
      "new_id": "1274f07d610c90b5336d88bf14b232fe7c043ce9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh4339301259731857950.mlir"
    },
    {
      "type": "modify",
      "old_id": "7d2a90d03f0d7321abbb4e6b7bcaeaf008a99449",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin3434837777651772019.mlir",
      "new_id": "b725832e07ffd885c54c0a178972bffdcd168b58",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin3434837777651772019.mlir"
    },
    {
      "type": "modify",
      "old_id": "1467f7f24800fcbc1335553f2b8c376ea706cbd2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin6626096260784457491.mlir",
      "new_id": "c7ad4f1059b2cec50f8cef56a8628589303dfd50",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin6626096260784457491.mlir"
    },
    {
      "type": "modify",
      "old_id": "562b353aff62d7f32bd250425e38d40ad62ba558",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi4187542989145136011.mlir",
      "new_id": "71fa5f01e3012db965ce6a092434279f3eb7c4ac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi4187542989145136011.mlir"
    },
    {
      "type": "modify",
      "old_id": "819752be7382c1eb3f9f36a3d64f2cd963cc4a70",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi7379173832243563380.mlir",
      "new_id": "007136da8f862deec2a9c7bffb1800957fbf537c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi7379173832243563380.mlir"
    },
    {
      "type": "modify",
      "old_id": "17c4c2816fa35da23ec27622632bbd0ddc27462e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-6873417748702292701.mlir",
      "new_id": "724ed8582f1b651ff5dad62d8dae9d67396805d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo-6873417748702292701.mlir"
    },
    {
      "type": "modify",
      "old_id": "be0209a73b43747c407afcbed90a65df21bd00c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo6832112543129542117.mlir",
      "new_id": "bdf9c17b091dc7589c3873df4a74c00768336fe9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo6832112543129542117.mlir"
    },
    {
      "type": "modify",
      "old_id": "a1f86b1531e1544908a541fca2c43cf6341238f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi-1913261295690793592.mlir",
      "new_id": "d142e565245aee0e257957a92b6ab5ef36ae9edf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi-1913261295690793592.mlir"
    },
    {
      "type": "modify",
      "old_id": "85ea0e6fb17c458e608aaac9f6d9295bfd4b493f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi2385003291164847436.mlir",
      "new_id": "a58ad574ac7fdc863f5a5583b91f561a0381169d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi2385003291164847436.mlir"
    },
    {
      "type": "modify",
      "old_id": "e3ee6fc567b015098cacc5d35894ccd213d831ce",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew2151281305958059125.mlir",
      "new_id": "9092abbcb7533657e91b0d15e2fa34637cc01640",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew2151281305958059125.mlir"
    },
    {
      "type": "modify",
      "old_id": "bfca0e63e1d1828cac80129f7e48da0f097ccff6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew3832905097368469483.mlir",
      "new_id": "5ac2868e6e0f554e9c68c4952634e5d7fe8a2328",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew3832905097368469483.mlir"
    },
    {
      "type": "modify",
      "old_id": "28dd49688e438f89afb16ded73cacb9a03805157",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-3362430168774037732.mlir",
      "new_id": "93b0cd3e48bb042ed046c8118eb67bee08318605",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi-3362430168774037732.mlir"
    },
    {
      "type": "modify",
      "old_id": "0fa20717b61157dc10bdbfba9abd154dd186148b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi106994944400262570.mlir",
      "new_id": "b640409c23bd9981e7f59c59069092dc9de17fd6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi106994944400262570.mlir"
    },
    {
      "type": "modify",
      "old_id": "a1ce258dbf7d8d583da08b9818d7df1aa9d78acd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-577545178140062831.mlir",
      "new_id": "b6ef8ee20a18ab53c3c582c372a3ea5fb1f6c375",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-577545178140062831.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ebdc89949655da448cc0062004fcbf3f3046c66",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-6011850232913338927.mlir",
      "new_id": "006f9385159bd52132faa98ba5ec8ae768d49905",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update-6011850232913338927.mlir"
    },
    {
      "type": "modify",
      "old_id": "aaf47a81980296849ebb0fcd83a423d6430f9483",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-3256607664589015350.mlir",
      "new_id": "9b8dc94b984a06a13829f0495930b4a0d44f3994",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-3256607664589015350.mlir"
    },
    {
      "type": "modify",
      "old_id": "6715c86a29ac24c176534e33a63d2228d6ce24e8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-7327087540068455882.mlir",
      "new_id": "841959ad32e454647df860598811c178916ed89d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-7327087540068455882.mlir"
    },
    {
      "type": "modify",
      "old_id": "44bd3287978e9a40bfac66b0cf6eb4c1dde991c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-6616585842710565767.mlir",
      "new_id": "33f29cdaae1f10a585315b4bfbec4b7b1d46c7c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-6616585842710565767.mlir"
    },
    {
      "type": "modify",
      "old_id": "92e76826a6f0791e6c7f0e924eef5d4349600818",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-7864195232735747393.mlir",
      "new_id": "3a95b36d074c61162b3c45030a7544a7b7df348e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-7864195232735747393.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a14d26da00d3796091ca2ab2123af99afca0700",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7199475041378945992.mlir",
      "new_id": "bdfa883ed5b6be9302d7f75bd50bb1034c5e6480",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7199475041378945992.mlir"
    },
    {
      "type": "modify",
      "old_id": "3882d3c6436d8e0eade512e9d9b05afc4d44f6f6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-8839460156077137232.mlir",
      "new_id": "94a068899e3a9b27dd36ff4d76c97bbd40ce53ae",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-8839460156077137232.mlir"
    },
    {
      "type": "modify",
      "old_id": "9e42482adfa1624c82f2d587d205ab552d888ee8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_71141133607715404040.mlir",
      "new_id": "8bc416081d27435866bafbeaf19ca23407c2714c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_71141133607715404040.mlir"
    },
    {
      "type": "modify",
      "old_id": "6bd4721daa3eda92bd4aef99dcc7378e789393db",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_74444378811213684451.mlir",
      "new_id": "105e3bf882a85f59521544f5ecc9c43b9681353c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_74444378811213684451.mlir"
    },
    {
      "type": "modify",
      "old_id": "ff07bc5d1c8275d31c40b22aa01f3fc04302e073",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-1929229371068995825.mlir",
      "new_id": "3b7631a4f6eecb5aa75e334357401c1a7f5366b6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-1929229371068995825.mlir"
    },
    {
      "type": "modify",
      "old_id": "c0c3541a41b9d69d83720aa19c796262a8154cbf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____7796631715486587555.mlir",
      "new_id": "08d9b17293d9d7bda92f4937ffd999224a2c1931",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____7796631715486587555.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee14dd44c4560dfa445f52ce309c356dbf66d1da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-4864067830661700007.mlir",
      "new_id": "79c11a287dcfa90237bd60ed2e6a054bdf0f0293",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-4864067830661700007.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7988b9d5805ce1b66233836bd5d6c8619c4e47f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-8078869473627428624.mlir",
      "new_id": "c4495735c8106c505959aa1b0ce61ed2d5ca66ed",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh-8078869473627428624.mlir"
    },
    {
      "type": "modify",
      "old_id": "a91d408890669eb06faa279fa7da3dee60c36e95",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-4048898580210518923.mlir",
      "new_id": "17ba3b2c7a76816c3060db86ee62a2ae68f82e49",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-4048898580210518923.mlir"
    },
    {
      "type": "modify",
      "old_id": "18127e00bfbd17d77da32ee5c565f63fc7f58617",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2663632515478957534.mlir",
      "new_id": "4dc555d42a63dc9171d3daf531a8c7999815b53b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2663632515478957534.mlir"
    },
    {
      "type": "modify",
      "old_id": "3db51fb602e5d17e4a101c6968db6aa336145bb3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4872233943325429746.mlir",
      "new_id": "04ac45c8f2c47e40c9fbb2c106edc801312be3f8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4872233943325429746.mlir"
    },
    {
      "type": "modify",
      "old_id": "30ab498624445c0e76456f06e6ecd054e2c8a89f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-5131798970918347525.mlir",
      "new_id": "4e394e109ef93a97f15cb5d5619affebbf1a039e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind-5131798970918347525.mlir"
    },
    {
      "type": "modify",
      "old_id": "5c14391a9c564968be74fc759e45225f770bda75",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-5817743396570967462.mlir",
      "new_id": "00394adf873ac400e2bceb3d70ca5450d35deefd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-5817743396570967462.mlir"
    },
    {
      "type": "modify",
      "old_id": "8a489415e22339f4fdb0e68e55f2db910426ddec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-9101122120036262009.mlir",
      "new_id": "7794c3230a93fb98812d4293656aad4a67684207",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd-9101122120036262009.mlir"
    },
    {
      "type": "modify",
      "old_id": "0aabd926f85b70b6064d501662910645d1ecde2e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind4956717948692458560.mlir",
      "new_id": "3c1a625cac02871f94e8b88e74009a5f1841da93",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind4956717948692458560.mlir"
    },
    {
      "type": "modify",
      "old_id": "88608ef4ac3a1e9ddeb248ef2546cb5bfdb72bd4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind6488415553946838757.mlir",
      "new_id": "b155f8935c89550d99169a5f87eabfaadc078aa5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind6488415553946838757.mlir"
    },
    {
      "type": "modify",
      "old_id": "ebc358a7aa6b3a145f934fc34ccdbfa43cbda9a6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-2311893409916309480.mlir",
      "new_id": "5ffcbeac9e434b8ffd0a421d95891c54c960ab14",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin-2311893409916309480.mlir"
    },
    {
      "type": "modify",
      "old_id": "d68eb26c9e52e80bc9bf87296f94839cc735cda6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin5443007369435740914.mlir",
      "new_id": "8d4e279667593a7aeaa972af5bf375ea6042b625",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin5443007369435740914.mlir"
    },
    {
      "type": "modify",
      "old_id": "84be0532be991a0c6fdafc5a079209feadf8679b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind139047943743357621.mlir",
      "new_id": "9d687822a28807e03c0b1dee2f6748d1d40a2adb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind139047943743357621.mlir"
    },
    {
      "type": "modify",
      "old_id": "bffbed9949b2b350f2a296fd6d04fc974ca73ef7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind2569505830733396853.mlir",
      "new_id": "a1e8b5a625b10b04ca5bc893f486cf6fed95bbd8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind2569505830733396853.mlir"
    },
    {
      "type": "modify",
      "old_id": "f30d7c36e790d5fafe5d951b744c613672c3e342",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-4522415576264482421.mlir",
      "new_id": "6f623a2f44f76c1233903ab69a68aa00d5588048",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-4522415576264482421.mlir"
    },
    {
      "type": "modify",
      "old_id": "c1cea41f978d87a2c480921772fe6b6f90e21a71",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-6751549191563984126.mlir",
      "new_id": "823c638fb27dd126d0f5449b6e7335e3d7c98cc0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-6751549191563984126.mlir"
    },
    {
      "type": "modify",
      "old_id": "9826c51b3782f27ef8d7b0644a7ebd8c93cb3f91",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-4184954724394605776.mlir",
      "new_id": "d85e90ef35e0464620330b246db25a3fecb4008b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-4184954724394605776.mlir"
    },
    {
      "type": "modify",
      "old_id": "310a921efcfe68900eaec168ce77c94bcd6e86ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_2909575980966412820.mlir",
      "new_id": "5ab4219777d4ccc85de66615f7287f53933ac79f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_2909575980966412820.mlir"
    },
    {
      "type": "modify",
      "old_id": "ca20a6d0512abc2d341f05d7fbe22ab5ef52468b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-6850199035370975979.mlir",
      "new_id": "8d01adde707a15896cfd2d0eea58f737c0cba64e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-6850199035370975979.mlir"
    },
    {
      "type": "modify",
      "old_id": "08d23275c3cb86c9023cd529d8a35488e48013ce",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update2307656599037197652.mlir",
      "new_id": "f3697a5bb80f3cf6ac85fd5c7c7c2c0de13170f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update2307656599037197652.mlir"
    },
    {
      "type": "modify",
      "old_id": "07dba7480deb2a0194dc624fef116b9c4d7cb5b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin3937406258051021731.mlir",
      "new_id": "5adfd803ada9e74375ebf0a3091469214eb1a09d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin3937406258051021731.mlir"
    },
    {
      "type": "modify",
      "old_id": "09fa789025a5affa433006b9859459498b5cf377",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin4671330445293080617.mlir",
      "new_id": "dd1292b241b3696a37b72b2d9e86518b675f9f5e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin4671330445293080617.mlir"
    },
    {
      "type": "modify",
      "old_id": "f1e80070506ee2acb5fe964dc8118ca5690ebd2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-6823698740828894740.mlir",
      "new_id": "05e16ee3f07afdecb063678a45b92140a1dab334",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-6823698740828894740.mlir"
    },
    {
      "type": "modify",
      "old_id": "7260ed8a72da3cd5618d12da97de7ab770848d98",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__8116338334848718103.mlir",
      "new_id": "b5a12728765277ada1d8860313a086d14e3d6d35",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__8116338334848718103.mlir"
    },
    {
      "type": "modify",
      "old_id": "87c6d511ae82ccb0ba437b7932189f168cbc8427",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1897490814391211893.mlir",
      "new_id": "09f2bde5f9bdaf70c4779aa4754923b73a171cd3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1897490814391211893.mlir"
    },
    {
      "type": "modify",
      "old_id": "a67421ea8c4be138999ea74cd4c200235953b352",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up3955050749775670123.mlir",
      "new_id": "92f2cce043c4c59208962110519354bcf67490a4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up3955050749775670123.mlir"
    },
    {
      "type": "modify",
      "old_id": "06fdfed2f3e3da3ab0296ced11e3601622fce14b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-2669360800802260213.mlir",
      "new_id": "603b250569c05e4fcef184676b98b866b662c0db",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-2669360800802260213.mlir"
    },
    {
      "type": "modify",
      "old_id": "ce6e77f346a2e664b96ada055bf9195bec526b2c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-5300422118746435442.mlir",
      "new_id": "5a7cba1a9daf274da73aeb08f8a1e718c060e86f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-5300422118746435442.mlir"
    },
    {
      "type": "modify",
      "old_id": "d739f23a4c3ac8aeaa67b5416a430fe42a642460",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-5773493145779110529.mlir",
      "new_id": "512f27c4076a6de7c9dc643c8c3beb0ea8ab95d0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-5773493145779110529.mlir"
    },
    {
      "type": "modify",
      "old_id": "338f37e18b00409b4d9aa20376a31c509a420558",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-6306854691638577587.mlir",
      "new_id": "f421269551cc09f1ab3d0c402534b40e29fd9d85",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-6306854691638577587.mlir"
    },
    {
      "type": "modify",
      "old_id": "3666a31ced26abdfd9586c351a4f1349af04ee2b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind4521601090946723752.mlir",
      "new_id": "0ecd7288f0658bb9194fab14c7146fd7e2651d54",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind4521601090946723752.mlir"
    },
    {
      "type": "modify",
      "old_id": "c1d653ff6db4eabad34b4f1490223ec403b123ca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind8113619835508400365.mlir",
      "new_id": "d26c60aefc80f871439a054e58db7f8e80ff35e7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind8113619835508400365.mlir"
    },
    {
      "type": "modify",
      "old_id": "48a083b16ab3a5b75db7db17dd194bda78f7e9c4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-3469160267547152989.mlir",
      "new_id": "3c1541a528a62c85504fd519f6ed0bf45f6bb9b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-3469160267547152989.mlir"
    },
    {
      "type": "modify",
      "old_id": "c66065ced84fc2b8ed21fba54bd33e7152d77ce7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-4485215942239891048.mlir",
      "new_id": "cd2c8bf1f8f4a008f3c6cd86a1272ca72b4e200a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-4485215942239891048.mlir"
    },
    {
      "type": "modify",
      "old_id": "add741dceb4d836e9cd72c66ee1751649886ebde",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-4157173160933560839.mlir",
      "new_id": "d4eec5c884c3dfc9565fee999a6a4641eafa184b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-4157173160933560839.mlir"
    },
    {
      "type": "modify",
      "old_id": "6b0c37f31c92bd4deb2277ff6279334385413419",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-8276893021528647212.mlir",
      "new_id": "877a0591ad4d31e1da2e62f6838ed29f6af2936a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-8276893021528647212.mlir"
    },
    {
      "type": "modify",
      "old_id": "42881b7cc7addfdebaae148cc9fc13a0036b7d90",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-3907920868952273498.mlir",
      "new_id": "e5598430cd65423dddbeb7f9c216a72be7e1b2d5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-3907920868952273498.mlir"
    },
    {
      "type": "modify",
      "old_id": "fcb4bec7d4855d8d4179f94e8efc2249b2586f04",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-5829009328670546117.mlir",
      "new_id": "79d6fbd75d50aac8d055b550bbbeb3e73888f810",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-5829009328670546117.mlir"
    },
    {
      "type": "modify",
      "old_id": "30b95262ac46d01d3994df5e4c94d806af0b22b4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1880838265011712149.mlir",
      "new_id": "8e9d8219a0a673c3b71864a3b66cf665ddd3d01e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1880838265011712149.mlir"
    },
    {
      "type": "modify",
      "old_id": "88493eddfcfaf247c6fc00fa469d31aa35d86ac9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-711642015244088147.mlir",
      "new_id": "34fee5a9a12b869c8ea9eadc180565c513f8d582",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-711642015244088147.mlir"
    },
    {
      "type": "modify",
      "old_id": "82d7a635c17c7aca5054642f90c51b0c9a6061b5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1976704082280904433.mlir",
      "new_id": "7a03fb001baf3cef2e111bbb78c65cc50d7020f5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1976704082280904433.mlir"
    },
    {
      "type": "modify",
      "old_id": "09dc05ecd134e70d80e91385d90cd8a2c480935d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi1744785575307162204.mlir",
      "new_id": "c04a9c241621f69ee3a3b8c22c96b15d074b112f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi1744785575307162204.mlir"
    },
    {
      "type": "modify",
      "old_id": "3a24a78c078c6bb55254307dc63c791632286f9b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_3989505911331951517.mlir",
      "new_id": "41c65c994fdeef74608470e6c4f20e0555d784bc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_3989505911331951517.mlir"
    },
    {
      "type": "modify",
      "old_id": "ca7f533f8211fd496c1c42dab22cc1a07451b78d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_5832033282227399517.mlir",
      "new_id": "c90a40e1bd5cfa08f9ae287f2bb1f0dbecd42881",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_5832033282227399517.mlir"
    },
    {
      "type": "modify",
      "old_id": "4cadd1a4d975521be739576ac8e7672c0f5961b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-300910068295299136.mlir",
      "new_id": "2e12e5e68ee451152de79a0c6e3ae00d015028e3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-300910068295299136.mlir"
    },
    {
      "type": "modify",
      "old_id": "60e6d21cea005643c634dabed3d26085c1d5b938",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-4635129519501855715.mlir",
      "new_id": "a2977afddbd4ea7ab7553ead4d393d8164e32865",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-4635129519501855715.mlir"
    },
    {
      "type": "modify",
      "old_id": "5cefe3088f2f3ecfa5eb5cba46a5f96e27e0a4ef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4972159876752712758.mlir",
      "new_id": "02ffc8a263f8509745f9dfe788d5e50e2573e363",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4972159876752712758.mlir"
    },
    {
      "type": "modify",
      "old_id": "1583d124fb29e1acd4a5ad1a1a9966936faa056e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-5028247379765118510.mlir",
      "new_id": "414a42a50b11440d581e82bcd129a3c99010afd0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin-5028247379765118510.mlir"
    },
    {
      "type": "modify",
      "old_id": "c4910323f6d14b40cd767f5cc41db56a7af7dd3d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__3328729301052536943.mlir",
      "new_id": "ec7473aee56905afb60c847989e6db40285a17c1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__3328729301052536943.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc46061a20b113e74f1853e066a9db6376714ae8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__4304361855510301002.mlir",
      "new_id": "7cba5e28a1e9880ca3e3b1f0d1629a2befa37d10",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__4304361855510301002.mlir"
    },
    {
      "type": "modify",
      "old_id": "7fb0f740662a97970356dd64a4479c9ee9ff5bbc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-618963719957585263.mlir",
      "new_id": "e511b2646ea548225f2480042bbf91f34a36d4c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-618963719957585263.mlir"
    },
    {
      "type": "modify",
      "old_id": "d7411e8a87643964e06f72d8a8eda50dafd64aaa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up9163082647035002694.mlir",
      "new_id": "f79850a1ddc693da9ec5d8c8277e9d2997bac76f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up9163082647035002694.mlir"
    },
    {
      "type": "modify",
      "old_id": "8862d3143a3bda7bbb51ddfd998731e438823255",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-2358744188387002594.mlir",
      "new_id": "4762ad4c7740deac376c3e16c0a7fdbdaa425d8b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-2358744188387002594.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a0fef910383a2e1067df1250529b008c13b4d7e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap1996461387154660185.mlir",
      "new_id": "5281b2d86386f80617a208e20f4c5068c24447f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap1996461387154660185.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b9f86076c6bf1c4ed7e6e6eecadb26bedf9a492",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-2164897151381856441.mlir",
      "new_id": "4675e4f8c2646df2c23d5d0a791107aadcced5a8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-2164897151381856441.mlir"
    },
    {
      "type": "modify",
      "old_id": "9bb3ce85fbeef76843ee3aed9126a1f569ca9e97",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-2961561519251948998.mlir",
      "new_id": "c13883b0dd15eaa4d83d94d33cdc1145a5090615",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-2961561519251948998.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2e85bb1d3b2efa52b9b57241a5478142f2c1d2d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-8020988861111988180.mlir",
      "new_id": "55fe59d04b7e2e0044cc9e2481c964c68fc1408a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-8020988861111988180.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e5afc21fe7b89c20bd51d3ce315e60aadf06055",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4881717839749137459.mlir",
      "new_id": "157a0b2e277227144b3198fb247a872609ffc415",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4881717839749137459.mlir"
    },
    {
      "type": "modify",
      "old_id": "4154784bc9a92b5270388f8933f7ee05b0c15cea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-1401586037954451478.mlir",
      "new_id": "ee12efdb41bc6f1889ec75189baeebc2009722d8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-1401586037954451478.mlir"
    },
    {
      "type": "modify",
      "old_id": "970dc5103a170b0f9a704422227b4c7f65e7c772",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-3299551669044129890.mlir",
      "new_id": "b9b344e1cf021a53561c497cd535fd0468f3b8c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi-3299551669044129890.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f102086cdca537b869b0131edb109cd34ecef40",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-482045768683493515.mlir",
      "new_id": "d0a7d104895dab7cdb4028e72610c6928b999c03",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-482045768683493515.mlir"
    },
    {
      "type": "modify",
      "old_id": "a444acaa9897ce5cb5bdff79cfed43678746af57",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo3010445502852181464.mlir",
      "new_id": "5a015058386eda850bfc495ff9a0801b0ab3eaab",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo3010445502852181464.mlir"
    },
    {
      "type": "modify",
      "old_id": "337ae3861b5d7a6fcd750a306341baccff41eb41",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind1932062239427915429.mlir",
      "new_id": "1532558f4a5e1a805a8682cdcc91584605cd50dd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind1932062239427915429.mlir"
    },
    {
      "type": "modify",
      "old_id": "f41bd1db7ca2613c11dccb911c470181ef719016",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind6959809007312719819.mlir",
      "new_id": "bfe32baf32d1ed57c3e25d6a4a10cc00d4d26271",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind6959809007312719819.mlir"
    },
    {
      "type": "modify",
      "old_id": "dc4886feb8551633a2213ceebfab4d3d7d6ee180",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo6234545826659136216.mlir",
      "new_id": "d2de72eba72fa96a9f09fa6d15e0ba665b5c66fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo6234545826659136216.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b6f637bdac9215d2596354e41af777fa03adc4b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo6651601235066092967.mlir",
      "new_id": "10eab142c13b21380c460d149b9e12c959772d00",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo6651601235066092967.mlir"
    },
    {
      "type": "modify",
      "old_id": "d753c755e4bb8339a1d7c4fb7c68db474dcf9b33",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8494262652049039261.mlir",
      "new_id": "40775258247450f58e56586e33e3c2af640b9e7c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8494262652049039261.mlir"
    },
    {
      "type": "modify",
      "old_id": "8b9d49f59439161dbd50c0c5623bbd88c292bdd7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-9177737518976100433.mlir",
      "new_id": "78f4c8c7f1399e66c72fa1732cf937aa14bf2a39",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin-9177737518976100433.mlir"
    },
    {
      "type": "modify",
      "old_id": "452eb2e541bf36dbd6712b4b790623ce3a8990b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-1308981154281318723.mlir",
      "new_id": "06b6decba97a7540ec6013ebc9ad3e8d22b9169b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-1308981154281318723.mlir"
    },
    {
      "type": "modify",
      "old_id": "16af4664b301457807243a7407ad2ee8747a4387",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-6584724419750600150.mlir",
      "new_id": "de0b14b216ffacde5908079ede0a4dcebf8f7e19",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__-6584724419750600150.mlir"
    },
    {
      "type": "modify",
      "old_id": "5266bedda0c05204d3dab03e208afe0b9349c416",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-8355771186641774244.mlir",
      "new_id": "e66723c95ac3876766b076d368e424af13f822f9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-8355771186641774244.mlir"
    },
    {
      "type": "modify",
      "old_id": "afdf325e9ff87f676027bc62bb31759a4fba3afb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8744947161230796126.mlir",
      "new_id": "16cf16bbd10adc6ddb5a0e357f6dbfe734cc2ea5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8744947161230796126.mlir"
    },
    {
      "type": "modify",
      "old_id": "b69d722c873f5d4bf71d23ba49e8d16912fa9eac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-3464400292317216201.mlir",
      "new_id": "e99d83c765f4bad3f9300aaa76a66ee9c63ed634",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-3464400292317216201.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee96cd79c2ed346dc5c27ce1534b2de9d1a20aeb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind8789432491710657866.mlir",
      "new_id": "a824bf29d3ceb4671e8d33870720f0f2782bf04d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind8789432491710657866.mlir"
    },
    {
      "type": "modify",
      "old_id": "59ab9b245b46aa9becd0df55219bf11b1691cd1b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-4379412217277116514.mlir",
      "new_id": "dd394591783154b34189e71863f99de5b2f17856",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-4379412217277116514.mlir"
    },
    {
      "type": "modify",
      "old_id": "d9141b0668a8e0728e3bd10c66e7f00b1644a715",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-4620022713790399524.mlir",
      "new_id": "8587debdd3700bf159b2581a49cdc4bf564600f9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-4620022713790399524.mlir"
    },
    {
      "type": "modify",
      "old_id": "40e7c02dab27cfdb201b74c9c8852897dcea8db1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-528608027875306388.mlir",
      "new_id": "ade91bdbb1df980b6c068fa9db98fab108d4e327",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-528608027875306388.mlir"
    },
    {
      "type": "modify",
      "old_id": "3621c4cd836408caa8c051856b2292f6dd3519e0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd2543776539875068957.mlir",
      "new_id": "e01d17830c734d7fe465fd10c9dde5dc2f4285fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd2543776539875068957.mlir"
    },
    {
      "type": "modify",
      "old_id": "75c295313ecf16029dcbf5241757091b1a70a886",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape-6662304895221129059.mlir",
      "new_id": "3d3eba7921c211f334dc17c06510f2700d6f8d0f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape-6662304895221129059.mlir"
    },
    {
      "type": "modify",
      "old_id": "8f98c9f97aeecdb43026f33d5db3c59a2144dfaf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape1379091125016347204.mlir",
      "new_id": "2bfe94c36eb0f06382cc72eb989b1fd39f6ba0ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape1379091125016347204.mlir"
    },
    {
      "type": "modify",
      "old_id": "fc89fe5ca695742161c8506e294bfb1aa07d74ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind6104678372056570904.mlir",
      "new_id": "0c85fbf6a1cced1f7b3a5cb43bb6aabdcedeefa2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind6104678372056570904.mlir"
    },
    {
      "type": "modify",
      "old_id": "76945d54ce56a3a30fda6567671b6396cd77090d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind8951713881198357282.mlir",
      "new_id": "4813664ae9575417a77276e6a55a50e46428f251",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind8951713881198357282.mlir"
    },
    {
      "type": "modify",
      "old_id": "29d83fc889bf547a9b8c82671fd4e5b7430ada3a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin-2293786845320776475.mlir",
      "new_id": "498a1f716470b58537cdc189bf479f3a1ed2da5b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin-2293786845320776475.mlir"
    },
    {
      "type": "modify",
      "old_id": "cb219ac2cf5fea497c4ba8dc80deeb53fbb865a7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin-825491026465492200.mlir",
      "new_id": "1ed7a1adad0acd2b1ade36aecbe24dee9b255b80",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin-825491026465492200.mlir"
    },
    {
      "type": "modify",
      "old_id": "66fcc202dfd0c804b7b746c281a69349c86e53a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-3748161403226128671.mlir",
      "new_id": "b5dd607eb5fecd2603bde68a0cb23f3977a811f4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-3748161403226128671.mlir"
    },
    {
      "type": "modify",
      "old_id": "68c7f7dfa06b8322092a7212c2e7d1da7a34088e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-5452883222867681143.mlir",
      "new_id": "6c992d10c7d26616228a4a07cd44a208bc545c0b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow-5452883222867681143.mlir"
    },
    {
      "type": "modify",
      "old_id": "056eb820cccfe4222667a050800f45e865acaa7a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-4983694071830808263.mlir",
      "new_id": "9ebf7d901bc97d74e22890bdd7d89b03f9738860",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-4983694071830808263.mlir"
    },
    {
      "type": "modify",
      "old_id": "23bbe171f77576a0a50935df1f5ce40f2a044aec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-922800980968193647.mlir",
      "new_id": "05a57df60e491c2541ab779e764f336a2f1d8dad",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-922800980968193647.mlir"
    },
    {
      "type": "modify",
      "old_id": "e09a536b886c62de4e950be7a06fb11ab3edec6e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-7628752331345613625.mlir",
      "new_id": "8be4b91a479d5b64ca2a896a31ab5e679eab14c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-7628752331345613625.mlir"
    },
    {
      "type": "modify",
      "old_id": "048c4421134709dddccae4ca997c6feb3aa30f8f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi7087372310607227699.mlir",
      "new_id": "17b8640fb4354c5019e3d6dd61c6035ebd58ad68",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi7087372310607227699.mlir"
    },
    {
      "type": "modify",
      "old_id": "ff35f66f37fde7927863f944939eb47534394d0e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4238276651709682367.mlir",
      "new_id": "f84013705c7bde9e58f49e7cabaaf1f8ca09798a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin-4238276651709682367.mlir"
    },
    {
      "type": "modify",
      "old_id": "ba6f33bc923f17a413e223337b207c89335fa60f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin2574239198136190332.mlir",
      "new_id": "3e91c54ad1de70bfab3cfa831b9381175e31b842",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin2574239198136190332.mlir"
    },
    {
      "type": "modify",
      "old_id": "eee0a01dc266634ba35cb954fbf817bd578df5ea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-7448424536125729420.mlir",
      "new_id": "c31ccc9cffb284afd6511e9d4b6149c85477c404",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-7448424536125729420.mlir"
    },
    {
      "type": "modify",
      "old_id": "1ab3b4d53e1535b40fb8b4573f5913c6ea5c2bcd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew1534887604859550305.mlir",
      "new_id": "9cf1ff23cd3805426fd3898c69711f74f4e4a26e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew1534887604859550305.mlir"
    },
    {
      "type": "modify",
      "old_id": "32a377e79b5300a390cd59b55356d874d4f4b74b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-7120094586284358384.mlir",
      "new_id": "9bb3f3ee6543149ef9c1c14bc89f6b44048d71e9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-7120094586284358384.mlir"
    },
    {
      "type": "modify",
      "old_id": "33795a7af11a39449c62535ea956547d91e306d3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-8557503002565537042.mlir",
      "new_id": "7768d12e8a21fbdde914facb67d647322c720149",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-8557503002565537042.mlir"
    },
    {
      "type": "modify",
      "old_id": "2c9df9475a639e0110c2ae46b98fc3344948e315",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-2855550188487489879.mlir",
      "new_id": "acda2640c3278b2d0c4dfff3c022adf2f185521a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-2855550188487489879.mlir"
    },
    {
      "type": "modify",
      "old_id": "8227a0eb59b5c8375103cbcc50ccde253d2a9b88",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-6858799924904399445.mlir",
      "new_id": "8dc690a26336251f727c0c5d53eb66ffc61a6978",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-6858799924904399445.mlir"
    },
    {
      "type": "modify",
      "old_id": "57153c3ecca4548bd74038eea9170e603548a979",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi3842920200244835884.mlir",
      "new_id": "5f0d6eda57378eeaf53e94329e54feb6f1c2796d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi3842920200244835884.mlir"
    },
    {
      "type": "modify",
      "old_id": "2b4e960c22aa725149615c908081d705aa0eb821",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi531814443214012646.mlir",
      "new_id": "0b499babfca14f41684074c6a4f743597448d4f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi531814443214012646.mlir"
    },
    {
      "type": "modify",
      "old_id": "939e95e9a6ede53cb969bce8c271c7ca2b41d300",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-2203453677154150371.mlir",
      "new_id": "eb15c14c5b538bd92407914448ce79bb518271e0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-2203453677154150371.mlir"
    },
    {
      "type": "modify",
      "old_id": "f9a6e81dc510a0f3ff89db91832f8386d8ff757a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_1680898793278744290.mlir",
      "new_id": "a23beb0570d4e26c515b01063f52da0fc85c8483",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_1680898793278744290.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc36b5d558a7f1ee832a49dbff1cb4fe4d6701b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-5568333888604383669.mlir",
      "new_id": "cec8c348e516a81b7ace7ce6642ff582b9bdd477",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-5568333888604383669.mlir"
    },
    {
      "type": "modify",
      "old_id": "82257bfa862ca24fb20a2a8ce881e81a9cce4f3a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-7686200927978297073.mlir",
      "new_id": "3222ae268f1f52f606a67d1c7ce70724c0a4d7f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-7686200927978297073.mlir"
    },
    {
      "type": "modify",
      "old_id": "e08c369ee9184a3f4fc5ac917234c9d9024750c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-8261153333685108720.mlir",
      "new_id": "e4af2b3bc87c8608740a139278c64ea105f9b5eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-8261153333685108720.mlir"
    },
    {
      "type": "modify",
      "old_id": "52eaae3142d6de200908004003be82c6d24f66c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha8897516788227473093.mlir",
      "new_id": "7fe4e7104a545af85d1e55fb0ff2395dfc474b53",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha8897516788227473093.mlir"
    },
    {
      "type": "modify",
      "old_id": "c54d1898a7b71a40a6574a1812437e4544816627",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind5324299034178680984.mlir",
      "new_id": "7dcd2b0a6b3c4d894a87cb2fd78c5bba8940e64b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind5324299034178680984.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c00d96616922a0061291b5de3b1ab6217c621a3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind8053525223274197913.mlir",
      "new_id": "9d2dfce9047d7b27b065ee72f07893ef78d5eb79",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind8053525223274197913.mlir"
    },
    {
      "type": "modify",
      "old_id": "d48225c31e811e8e31362a9deab2a6a1cec5bce9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-3919347360338486161.mlir",
      "new_id": "cd8bc93391be4657595467c6eda97d2c0e489538",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-3919347360338486161.mlir"
    },
    {
      "type": "modify",
      "old_id": "d48225c31e811e8e31362a9deab2a6a1cec5bce9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin557265926019113997.mlir",
      "new_id": "cd8bc93391be4657595467c6eda97d2c0e489538",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin557265926019113997.mlir"
    },
    {
      "type": "modify",
      "old_id": "4e5bca3fc310fd38830fcda9aba1cc9a9990bc91",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-530097313420603595.mlir",
      "new_id": "183b81420ead36e8181d4a9f8fb0c1c0bea95032",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-530097313420603595.mlir"
    },
    {
      "type": "modify",
      "old_id": "c1cc7e3764ba58087f2be3e7e05f9bfa3188e08a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow5540511942877021843.mlir",
      "new_id": "b539d6f2db4be6304ed2d6a8ee9c44d68ef8c9d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow5540511942877021843.mlir"
    },
    {
      "type": "modify",
      "old_id": "1a3a1783216c947e59a83e2433a0e0074465829a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-7921085769571620715.mlir",
      "new_id": "bdfb30a92db6c30b4c956ba2a8b65eb1475f9100",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-7921085769571620715.mlir"
    },
    {
      "type": "modify",
      "old_id": "6bdf4e3fdb55fbea67bc6f698ad84e885608ef67",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin5516599741785648027.mlir",
      "new_id": "56e04c9e93c9bbc7fc28840f20a24d791d8ee623",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin5516599741785648027.mlir"
    },
    {
      "type": "modify",
      "old_id": "3b94308c96d732d92716f875cfbfe0b9e0c31d9f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-3890715224454106690.mlir",
      "new_id": "a20563b85d0f594ccd427d19acaba1b137fc4ee0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-3890715224454106690.mlir"
    },
    {
      "type": "modify",
      "old_id": "b0198bc2be1fa776247d476d65c033396c8b67ef",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi2451467265301592276.mlir",
      "new_id": "0a12300de0c6817aac4ff8d9f93e4daeaafcdd5b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi2451467265301592276.mlir"
    },
    {
      "type": "modify",
      "old_id": "1aa0f4c8a148d4e79c714c5c02b5d71edeb07def",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-6835298325160753158.mlir",
      "new_id": "3bcc7a552c79ba69719184f27d5d407c83195ea4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin-6835298325160753158.mlir"
    },
    {
      "type": "modify",
      "old_id": "e55b1866925c2f19f2b1cc41a5b05fae506a49c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin5907199364789461624.mlir",
      "new_id": "c977b4ac978959d0b93e8be639c4d193376d5b96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin5907199364789461624.mlir"
    },
    {
      "type": "modify",
      "old_id": "617dead17bd1c9e0292b2157df0d6392bfab9b7c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew3599289276786300260.mlir",
      "new_id": "d0a1b5feb6abab8d22d9c88f01ab872ff4f0011b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew3599289276786300260.mlir"
    },
    {
      "type": "modify",
      "old_id": "de9f082b16b668241af5e4b24c2b650b011b07bd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew5573174805555653228.mlir",
      "new_id": "721ba246198ec3963e9ca35e54743d99a6098792",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew5573174805555653228.mlir"
    },
    {
      "type": "modify",
      "old_id": "1f914bd1a4ae800850b98d816f4b13da36a6d9a4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims3891969193358125108.mlir",
      "new_id": "c2bdcc6c94561e4f237cceec9ad73938be5a577b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims3891969193358125108.mlir"
    },
    {
      "type": "modify",
      "old_id": "dfb699134bbc9d4fe9fb1c984b632841c059ab2a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims6728519843519579187.mlir",
      "new_id": "320c0a7ffcdcf428ded0f262caaa5c19534ccf98",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims6728519843519579187.mlir"
    },
    {
      "type": "modify",
      "old_id": "271ab254144526326ac8aeb8586bb42ac70ac81a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1875016188276619820.mlir",
      "new_id": "b355e3bbe6c35355635a188b9708b4b505b4e36f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1875016188276619820.mlir"
    },
    {
      "type": "modify",
      "old_id": "cb623ec54c6fe6ba3cbef06fe352256a3e8854ae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat2832033142102107345.mlir",
      "new_id": "b75b78bb806f4cf14230c13c6af257a06ce1c467",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat2832033142102107345.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ae9f5d35597084b75d6d67cc13cabe046e80dd7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi4541439119239315328.mlir",
      "new_id": "19d52bff1065b1bd34ba5bd4b78a61e54199092f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi4541439119239315328.mlir"
    },
    {
      "type": "modify",
      "old_id": "4ec32223671075f002e27422983b9fef14499100",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi6249915064913725474.mlir",
      "new_id": "2d5cadb5bcaaff435bbebf2e2567ab31d1c62205",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi6249915064913725474.mlir"
    },
    {
      "type": "modify",
      "old_id": "f753feedc0c3efa874d7d2a3ca8951e2cb338e30",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_4998849318336846036.mlir",
      "new_id": "75faba2a9310cf9c435283545901de0b3b35c37d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_4998849318336846036.mlir"
    },
    {
      "type": "modify",
      "old_id": "bb49f3a9646aa9a12a09a6661ee3510afdfcd8f7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_8808245818971476835.mlir",
      "new_id": "04d532c05beaf275ead8b2e19c0423537329e457",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_8808245818971476835.mlir"
    },
    {
      "type": "modify",
      "old_id": "69f096319cf85eded70017815b2b7b09dfec4b45",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-1847282675845561838.mlir",
      "new_id": "ec8946c871034376fb9751911fcde6f667dbb9e3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-1847282675845561838.mlir"
    },
    {
      "type": "modify",
      "old_id": "076d27fde1ddd06f339d5f19b4677a771dcd7f4e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-7307692730245064305.mlir",
      "new_id": "7b575d65daecab5780b4e5dc6ce7ec759227f9d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-7307692730245064305.mlir"
    },
    {
      "type": "modify",
      "old_id": "7af8373a940dae23e849bc1d77ae5c95f79e667e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-8377372164247774274.mlir",
      "new_id": "d76ffb7a20879f006f3c7bf4311ac9d75e4ad5f9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha-8377372164247774274.mlir"
    },
    {
      "type": "modify",
      "old_id": "b977b506db63a28217226d1243721d92ac91cb18",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha101657976520010788.mlir",
      "new_id": "71fa7ea30d19c97097fe4ad97123f16d1b1257b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha101657976520010788.mlir"
    },
    {
      "type": "modify",
      "old_id": "5136ac89f83be2655e03ec378cd84ecb8a79bb7f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-7267870577026374491.mlir",
      "new_id": "98920bfc489f8dff81c126227310e8983e9d2809",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-7267870577026374491.mlir"
    },
    {
      "type": "modify",
      "old_id": "17327e608df75056831823837884a9219fc1d017",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-7831274120441572214.mlir",
      "new_id": "fec7f40afe790e22615b9b7b2318d12efcab5bf0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-7831274120441572214.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2c087fd4bcf60e94660dded701a7e14fd86f88a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4364353834884633969.mlir",
      "new_id": "51212f89b6b5e1e06f6d1017fdddca015b80edf9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-4364353834884633969.mlir"
    },
    {
      "type": "modify",
      "old_id": "0a6302be54ee2c578fa2eef0dd32c60359313be0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind95337174995502651.mlir",
      "new_id": "c415c9572932bca0a009cea00a9264ecf972ee10",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind95337174995502651.mlir"
    },
    {
      "type": "modify",
      "old_id": "9f79202e03bbfc76194f493dc1a58495866541f3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-4401939044538948194.mlir",
      "new_id": "fd489bd5bd50fb81fd42d4de2cb5da360511a86d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-4401939044538948194.mlir"
    },
    {
      "type": "modify",
      "old_id": "41d41289565bc98c4695826dc350a29ef15afee6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd7374118277642078703.mlir",
      "new_id": "cc1d02bad58c3a32986ca9725e1da4c644db11a8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd7374118277642078703.mlir"
    },
    {
      "type": "modify",
      "old_id": "40dca0cf5666f04acd8f3d194bfba3295ff44e93",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-4320742272598554972.mlir",
      "new_id": "e4edf4fe5ec231bf9b5ba62f6840d8cd941447fd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-4320742272598554972.mlir"
    },
    {
      "type": "modify",
      "old_id": "6f96f1e87708c1f86de4e023e4d510b39f5a462a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5647768797625277636.mlir",
      "new_id": "fbb0bc4ab307666f245469d72955ba11b37a0d43",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-5647768797625277636.mlir"
    },
    {
      "type": "modify",
      "old_id": "3346f66f3fdd7f66adf5dedfd559760d2c2ca2f9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-2598259718380766207.mlir",
      "new_id": "3d33d57d108cb7c8fc3b4781b0d8e844a691d4e7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-2598259718380766207.mlir"
    },
    {
      "type": "modify",
      "old_id": "804675903388402aa2ca03f7ad78a65583e1608b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-4507202267474985982.mlir",
      "new_id": "2f0618ff6bcbce3ea856b93e664ef7fca02f033c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-4507202267474985982.mlir"
    },
    {
      "type": "modify",
      "old_id": "b125ae497149155eef1edd744398fc22e0f8c7d0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-282272057526996412.mlir",
      "new_id": "5761755c88204e4ed2e2ffbee302a9c195f6103c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-282272057526996412.mlir"
    },
    {
      "type": "modify",
      "old_id": "b6f74bbb2e15e796c36b11eb01326274890b7f6f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind5289939932728021031.mlir",
      "new_id": "b8629091eccddc30ce235e8edd2acdbd97ff6fc4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind5289939932728021031.mlir"
    },
    {
      "type": "modify",
      "old_id": "89cdf3a243623cf8a026fdc91cf7cf8c29828d86",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1911855998223034084.mlir",
      "new_id": "194123d298101571192f9d9561a8a1e243b8580c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-1911855998223034084.mlir"
    },
    {
      "type": "modify",
      "old_id": "f7129ef4d7be75fbb4d04ec201a7d181c01d3b0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-8788238066019617104.mlir",
      "new_id": "ac964acdf51b7131c1073872249bc26fa39fb9c5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-8788238066019617104.mlir"
    },
    {
      "type": "modify",
      "old_id": "317de7d796016609e7651dac8ff6f3a115b34637",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_1435654138527556962.mlir",
      "new_id": "8995abf8c59f5bfb67161beef59e6cb4413f31ca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_1435654138527556962.mlir"
    },
    {
      "type": "modify",
      "old_id": "109f26f135d7f3c26e4c956e70eca96c93e3a73a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_4791307863228181924.mlir",
      "new_id": "01faf37559a56040537b14310412b4f60be07f71",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_4791307863228181924.mlir"
    },
    {
      "type": "modify",
      "old_id": "2cb6238c10ea9d81fddb563cbb7f8c76d37b9552",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-3631479775757131866.mlir",
      "new_id": "b47d594d1aaf9e27ab6498ac9e7c7f8278bf6b2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-3631479775757131866.mlir"
    },
    {
      "type": "modify",
      "old_id": "503320959e292db6ffedc08a041ade3937e44532",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update8304920547383840732.mlir",
      "new_id": "f1552483e57991468824f3c6f77fbd122098f0ae",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update8304920547383840732.mlir"
    },
    {
      "type": "modify",
      "old_id": "88ddc19d8201fb1619b4845e60980c1f91ca3def",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4726102016836464664.mlir",
      "new_id": "fd7eb41f19e5f8c4131675c958a53e2c3e718ce6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4726102016836464664.mlir"
    },
    {
      "type": "modify",
      "old_id": "36192cab131dbe3da1dba2b17c90c86f27b4b7d2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin6504664932451562272.mlir",
      "new_id": "9bc1677d55627728708fbadabd691de8c612638b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin6504664932451562272.mlir"
    },
    {
      "type": "modify",
      "old_id": "68f5fc8c53c1c4a003626dfdcfe61a5a29c2703e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-1521424101927027807.mlir",
      "new_id": "fcce5cc101d6559c227ba35d84f9ed6cf9ecfa19",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-1521424101927027807.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f51951fadef2435dc034e1ce9ca121f7a37698c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7210161950186348637.mlir",
      "new_id": "c6fbd04825d032283cc35d1abaa4170451c7f318",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-7210161950186348637.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cfa8565a9346489f68d97661678b276409b6169",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-1488261666750715563.mlir",
      "new_id": "75483b44048376a445981db045f26bdbe506913b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-1488261666750715563.mlir"
    },
    {
      "type": "modify",
      "old_id": "001c49a35d57e4d655b4cbefb85ea4f536f06b6c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-347543453836881210.mlir",
      "new_id": "16d46710338cd1bc6af0d0e7c621aa930e8d00d9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-347543453836881210.mlir"
    },
    {
      "type": "modify",
      "old_id": "3645e7f192b185bdd4685ef877686a51f054a651",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-5935271915580022048.mlir",
      "new_id": "7a6ffce90851dd4818ea7330766c82c51a654660",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-5935271915580022048.mlir"
    },
    {
      "type": "modify",
      "old_id": "d61e789d962c80ea67ffcb494730b285e7b65936",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap8601300616414390880.mlir",
      "new_id": "5a33d05e41f5f943c5f16bce311891c4bf9f4a40",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap8601300616414390880.mlir"
    },
    {
      "type": "modify",
      "old_id": "ab2813a76e2d48a9621084b08ae9274667664a72",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_shapes_and_dimension_numbers_shape_float32_10_5__scatterindices___0___2___1___updateshap2046588017570464208.mlir",
      "new_id": "b33294db78b6f6485c17d4bbcb102a1b81888e85",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_shapes_and_dimension_numbers_shape_float32_10_5__scatterindices___0___2___1___updateshap2046588017570464208.mlir"
    },
    {
      "type": "modify",
      "old_id": "c4df6cbbb63b6ec59363cb88aeb8ee32e229c47c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_min_shapes_and_dimension_numbers_shape_float32_10__scatterindices___0___0___0___updateshape_7540184139313307643.mlir",
      "new_id": "7b7f4167c0180eb36d034bcc2980cc1135572ac3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_min_shapes_and_dimension_numbers_shape_float32_10__scatterindices___0___0___0___updateshape_7540184139313307643.mlir"
    },
    {
      "type": "modify",
      "old_id": "bf7eb104d19de4b97523bcceebd921fb812214f6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims_-8447536616241837701.mlir",
      "new_id": "6a1004844af0d31ab5a0a69217238035d7fc5155",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims_-8447536616241837701.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b49fe8ce85c96d47f2e09f1930d4087017591f4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims_-9193453681395924655.mlir",
      "new_id": "25d7778fbe404165164ecbc6fabb1b53bffaff4f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims_-9193453681395924655.mlir"
    },
    {
      "type": "modify",
      "old_id": "58ca4027832e1dc51e0e4b031e2e58904788a024",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindowdims-8163468306341242010.mlir",
      "new_id": "87feafb53a465ec74f817621a64060a525eb8b10",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindowdims-8163468306341242010.mlir"
    },
    {
      "type": "modify",
      "old_id": "63e29cf44c79906b8da95a368e8441e7a1984f34",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindowdims1979005098091914037.mlir",
      "new_id": "6c12bb728194fda293c76433e8b58d313861e534",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindowdims1979005098091914037.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee5f5d3395571bc44480a14801f81f1275299b70",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i-8818140716242942777.mlir",
      "new_id": "02328af7d2248a2a452523d8c07a0b7c83406683",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_bfloat16_5__scatterindices___0___2___updateshape__2___updatewindowdims____i-8818140716242942777.mlir"
    },
    {
      "type": "modify",
      "old_id": "c0a10333b8fda2b673a46ff7f0a751f14b6767ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____2849053335900351376.mlir",
      "new_id": "3cc20ba8690ad86ccb415542e9a63b7b8378bc8e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_complex64_5__scatterindices___0___2___updateshape__2___updatewindowdims____2849053335900351376.mlir"
    },
    {
      "type": "modify",
      "old_id": "2b82735f56fc8376cf48913b1392b984e307b196",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in6295346331202233422.mlir",
      "new_id": "66ef48318006cf1ae872d4c595b68fb92d253efc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_float16_5__scatterindices___0___2___updateshape__2___updatewindowdims____in6295346331202233422.mlir"
    },
    {
      "type": "modify",
      "old_id": "5bf6c68e783784cdbee5bbe2fe5becad8ae8a6bd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in3461545776928786403.mlir",
      "new_id": "ae08efe6edd06f554af0fc65afe27c6e97633575",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowdims____in3461545776928786403.mlir"
    },
    {
      "type": "modify",
      "old_id": "12c69655cae18c5ebd1722646018e9751157a0e5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-946010944284495501.mlir",
      "new_id": "66fd61cc526673ec1fe7735fbb88a77c123458ef",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int16_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-946010944284495501.mlir"
    },
    {
      "type": "modify",
      "old_id": "e572acfd9b772421b768790a22c7c95aff443fc7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse7107969741003160690.mlir",
      "new_id": "06317fe911f343846b7bed8858eec19f6a665921",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int32_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse7107969741003160690.mlir"
    },
    {
      "type": "modify",
      "old_id": "afe1c3e8ccb75dcd6bde3c86de258200261dfa02",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser5257149825007736758.mlir",
      "new_id": "c2ebef0a14bad4c2ccfb7895deefbe7fd3c40661",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_int8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inser5257149825007736758.mlir"
    },
    {
      "type": "modify",
      "old_id": "af3b059ea53ef5dd3dc4699fa2c5444c2d4e447b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-6272450472772319521.mlir",
      "new_id": "4a677280f5e2f70262ee48eade3827badd54e279",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint16_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins-6272450472772319521.mlir"
    },
    {
      "type": "modify",
      "old_id": "0a6e21ef3368082739540ee2fd287a5d04fb4485",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins2853409422886604297.mlir",
      "new_id": "d2e459bb4dc1af8e349a3e168296991033589bcf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint32_5__scatterindices___0___2___updateshape__2___updatewindowdims____ins2853409422886604297.mlir"
    },
    {
      "type": "modify",
      "old_id": "a00aba313c7a1fc7daead6d5de7b9cfb409ea6d5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-6082089585072626272.mlir",
      "new_id": "cc64c7087995b39b210b29e57108959fe46a4b89",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_dtypes_shape_uint8_5__scatterindices___0___2___updateshape__2___updatewindowdims____inse-6082089585072626272.mlir"
    },
    {
      "type": "modify",
      "old_id": "7fd87281240a50ae0842d25b1e35766fb287f94f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-5874148103768417641.mlir",
      "new_id": "6d8ae3b906a248245336c4d216d1467306f4f063",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd-5874148103768417641.mlir"
    },
    {
      "type": "modify",
      "old_id": "ba7e67c5b230283d42dc5368efbefcd368a857ec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd6195566175507190160.mlir",
      "new_id": "cb52e058e35a5dd626beab279d914d105fa049df",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_modes_in_bounds_shape_float32_5__scatterindices___0___2___updateshape__2___updatewindowd6195566175507190160.mlir"
    },
    {
      "type": "modify",
      "old_id": "bafb9077ad440ac895c40e36b5e51e11e057a3b8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-3409624153632020317.mlir",
      "new_id": "bbb516d2339d06bafdfe157db44b36c83a4e48fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-3409624153632020317.mlir"
    },
    {
      "type": "modify",
      "old_id": "d2f87958b3d33b779335d1732b1c7674ccd6fbca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-8783135513137066974.mlir",
      "new_id": "9dc136ceaa6f9917c6c90b23411b5a181b465c3a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_modes_out_of_bounds_shape_float32_1_5__scatterindices__10__updateshape__1___updatewindow-8783135513137066974.mlir"
    },
    {
      "type": "modify",
      "old_id": "ad08520d005ede077f4245994e9b7ced5fa32a4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-5884834123805549505.mlir",
      "new_id": "03205118fe10cb65059b2edb5db59f75905ae461",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up-5884834123805549505.mlir"
    },
    {
      "type": "modify",
      "old_id": "fe690b14b6ad09f3782b0ae0ce9eeb17f43c01fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up8705143908452656300.mlir",
      "new_id": "88cd6806a86c689a4b2c95287deb2c651ebbcbe5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_1__scatterindices___0___0___updateshape__2___up8705143908452656300.mlir"
    },
    {
      "type": "modify",
      "old_id": "42dd989031a54a3697a113381606a9a07224d5f9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-7803826843619021591.mlir",
      "new_id": "f9ec0eacbbccf7b37e1d8f223905af1703b94f2e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape-7803826843619021591.mlir"
    },
    {
      "type": "modify",
      "old_id": "0df0ace3111415b8d76e5cb8a6d77c02ac2dea50",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape6701127154102155436.mlir",
      "new_id": "fa6f235eb93f2cd6b35c9765015ecf6033eae0ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_2_3__scatterindices____2___2___2____updateshape6701127154102155436.mlir"
    },
    {
      "type": "modify",
      "old_id": "dace28224b5b92649314f926f33c406a2e854d97",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__35129282179707517658.mlir",
      "new_id": "99a0309057f0a987c13228ac2c222537e06e4285",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__35129282179707517658.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a53d415265160a56447b7d6686003064ece2afb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__35867807482160217870.mlir",
      "new_id": "7571fe99f5c2f9ae078e5d42a3c731df8ed8ce66",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_40__scatterindices___1___1___updateshape__35867807482160217870.mlir"
    },
    {
      "type": "modify",
      "old_id": "d315dc80c22f542731a8b863a545a137b64d32ed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-6622735777596271264.mlir",
      "new_id": "173f30ddbbe42d9a3e6c51538f632a4c3b09ce26",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_-6622735777596271264.mlir"
    },
    {
      "type": "modify",
      "old_id": "2775f3f22dccf8a97f001f4a6e0e3a6ddc6dbc4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_4553474462917028659.mlir",
      "new_id": "442109c10e2760ba0a316be7fcc77d398f28fd73",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3_5_4__scatterindices___1___1___updateshape__3_4553474462917028659.mlir"
    },
    {
      "type": "modify",
      "old_id": "d07ba15f5013e954d8d936feb9f7e44a90215481",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-145760181962938805.mlir",
      "new_id": "ddd9f33f95735ab46cdbacbec0ac142b7fac5597",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-145760181962938805.mlir"
    },
    {
      "type": "modify",
      "old_id": "ac2cf30a439901cffe67c61f48e6da680f6c0933",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-8371739205776775064.mlir",
      "new_id": "532acd5b290065625bd602fbd8d2252924ed26c5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_bfloat16_3__scatterindices___1___0___1___updateshape__3_-8371739205776775064.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b67fc3865ec8dd08d3a21a81fd08bdf8d891712",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd322742675240437040.mlir",
      "new_id": "cc910f4eae58cd2929c03312dbef52c92c2f4377",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd322742675240437040.mlir"
    },
    {
      "type": "modify",
      "old_id": "4f2c58818461c173541789915d4dd16d10319e00",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd733684278547254401.mlir",
      "new_id": "00be89a3a73055d51d56d1f68c13da9d84666297",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_1__scatterindices___0___0___updateshape__2___upd733684278547254401.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b612e7963143908b3f9487cf83eb94ecb150c5d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-6140700220738729259.mlir",
      "new_id": "98af4b94afe137604c2a8a2dadc8201b3d6c9586",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-6140700220738729259.mlir"
    },
    {
      "type": "modify",
      "old_id": "d962245745161d7b10b3b73a0a687c9998c6e2d4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-8345408382580861067.mlir",
      "new_id": "7d5a39b253261bc7db1523eaa3fec2fef3cf47d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_2_3__scatterindices____2___2___2____updateshape_-8345408382580861067.mlir"
    },
    {
      "type": "modify",
      "old_id": "3161cd7fd01877e2dd83e68b0b42aacfc183a660",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-7757659907667194445.mlir",
      "new_id": "ec4b2ea6f94fffbdaaf06915c8b5932c3e97feb7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_-7757659907667194445.mlir"
    },
    {
      "type": "modify",
      "old_id": "8aa5f634079b92d456745d34c58bdcbb2fb92888",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_197919947003228826.mlir",
      "new_id": "14a4974d656b61996b0b905f37560f117d453128",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_40__scatterindices___1___1___updateshape__3_197919947003228826.mlir"
    },
    {
      "type": "modify",
      "old_id": "2df4a88b10cd1b5deafa4b5aa41282e4a011fa73",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7947552070747803171.mlir",
      "new_id": "ed2131247378f63f13942860f053b479dba37695",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_2-7947552070747803171.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f72de162da53125a4dad75e666c71741f85c187",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_25570052255445993142.mlir",
      "new_id": "ddda26152bdefecb8a25dad955deba98c4a6928b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3_5_4__scatterindices___1___1___updateshape__3_25570052255445993142.mlir"
    },
    {
      "type": "modify",
      "old_id": "6745d66eb046ef29b50efadbbb32231f0140cdd0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-3382522699924592203.mlir",
      "new_id": "83ae80923e90898390f144bc9e880152817f7177",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-3382522699924592203.mlir"
    },
    {
      "type": "modify",
      "old_id": "2ff4fc363085fa543e655c4642871daadc129388",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4211286303940773681.mlir",
      "new_id": "31d5ae1de9c2f9da02aee7caad34089a71720551",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float16_3__scatterindices___1___0___1___updateshape__3__-4211286303940773681.mlir"
    },
    {
      "type": "modify",
      "old_id": "cd7dad07eb113df95cf2bc6a6d80f2aacc35b3da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-4240085725628378496.mlir",
      "new_id": "1af06224f81420893bfe03c358ebd99ead76cad2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd-4240085725628378496.mlir"
    },
    {
      "type": "modify",
      "old_id": "6b78e41bfe29a1d9116fb1831ddb04abb435dcfe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd8296829068770047821.mlir",
      "new_id": "a7fc9bb27a03aca69912cdf4a1aeaf564d0f56eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_1__scatterindices___0___0___updateshape__2___upd8296829068770047821.mlir"
    },
    {
      "type": "modify",
      "old_id": "5317c5b642e105d79c41c924bef2651b48176ab5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-1153956390855415424.mlir",
      "new_id": "dc5bb6e6f88cb8384dd975028da0fb55eac28184",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-1153956390855415424.mlir"
    },
    {
      "type": "modify",
      "old_id": "5df93dc00f8168df2d360ef8f7ed8b5f6d511e78",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-5918800170200989140.mlir",
      "new_id": "374256bf36687b1e61d5a08848381affb0a97bd3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_2_3__scatterindices____2___2___2____updateshape_-5918800170200989140.mlir"
    },
    {
      "type": "modify",
      "old_id": "7043f2ca1b2d6f3097f4ba710dda7619945aae55",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_-7580188922100577254.mlir",
      "new_id": "2cebb27ab9804df52156a023399dd8650c5464d2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_-7580188922100577254.mlir"
    },
    {
      "type": "modify",
      "old_id": "6d6132e8dccceaf347eb1948643b69449a7d492c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_5775500666699308696.mlir",
      "new_id": "7b92e38e9e777c947f7e2e67eedce9a605ad9e00",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_40__scatterindices___1___1___updateshape__3_5775500666699308696.mlir"
    },
    {
      "type": "modify",
      "old_id": "ba83f9f908af93edfd8aeb3351b260ed245bdf85",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-7239115346209951984.mlir",
      "new_id": "42b51247f996217a634debf51b615733b9ddb872",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-7239115346209951984.mlir"
    },
    {
      "type": "modify",
      "old_id": "71b75290bc98fe0cff78e1ffdfca86937851eea9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-7654327717305556714.mlir",
      "new_id": "fb03725872d0afa5afcb919707b8b5f23af09f12",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3_5_4__scatterindices___1___1___updateshape__3_2-7654327717305556714.mlir"
    },
    {
      "type": "modify",
      "old_id": "586695c97cc14a931185fdde0949acc872833f2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-2072492453741906856.mlir",
      "new_id": "eb66b03a2312039c00fee1c22061ad9517d1b77d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-2072492453741906856.mlir"
    },
    {
      "type": "modify",
      "old_id": "7ca19de6708a2572c6f78ea20f066dd1cbf929fd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-689434329673296.mlir",
      "new_id": "49c1c1876442684613856a4394401374b31ae143",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_float32_3__scatterindices___1___0___1___updateshape__3__-689434329673296.mlir"
    },
    {
      "type": "modify",
      "old_id": "db10cc7942f0d046c391123df24b13a3a23ab8c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-3529340748184752289.mlir",
      "new_id": "57a85f8f7fe52ed2ccb3097977a0f162b23fcac2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat-3529340748184752289.mlir"
    },
    {
      "type": "modify",
      "old_id": "0cc99440c32499269ed5ab6335b0168cafed9676",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat561594413493909078.mlir",
      "new_id": "a53845ef1e8ac3f8cc85f3efef97eb74b65f592d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_1__scatterindices___0___0___updateshape__2___updat561594413493909078.mlir"
    },
    {
      "type": "modify",
      "old_id": "d741803cd7c5cbdf4990c0b50a1630a4634e2f3f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-2688753720662318550.mlir",
      "new_id": "e90be8571927de5e9db524ff3845869de30ab614",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-2688753720662318550.mlir"
    },
    {
      "type": "modify",
      "old_id": "3433d822c169ceb89d6114a58a9f4e3e03a33f2e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-377529509809056652.mlir",
      "new_id": "8aea61edb3876c2e1202e477c116daf9af1eb75a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_2_3__scatterindices____2___2___2____updateshape__2-377529509809056652.mlir"
    },
    {
      "type": "modify",
      "old_id": "d08b74e36b1d9c1a8553a6ec8d6b8df67b5a8c3b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-7710644996687728757.mlir",
      "new_id": "d8ccee49895b4eabdb4c0c805a25d1572b5d4ac2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_-7710644996687728757.mlir"
    },
    {
      "type": "modify",
      "old_id": "e78777dda111aff0c0c9aaa78ca77449d417c140",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_2970487491126707417.mlir",
      "new_id": "531377f836c9c154c0331005c500e37340a8f6f7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_40__scatterindices___1___1___updateshape__3_5_2970487491126707417.mlir"
    },
    {
      "type": "modify",
      "old_id": "5fd8857bff254957213ca79dcccf9d929c4d103a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-6292020326763356426.mlir",
      "new_id": "1f07e859b46f9caa5ce433746f9efc74fcc44796",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_4-6292020326763356426.mlir"
    },
    {
      "type": "modify",
      "old_id": "b566c390b6606d55d5d24164f30691e8da5ca9fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46232449216193599633.mlir",
      "new_id": "8be7f4951d56bd65e20d08cf5fffa81c016ffeac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3_5_4__scatterindices___1___1___updateshape__3_2_46232449216193599633.mlir"
    },
    {
      "type": "modify",
      "old_id": "8e279f1f3a392f6d979fce9a95be0bebe9472360",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-5457944352225901292.mlir",
      "new_id": "48b995d0b2bf3b2fef7f2b914c3b72424dddb913",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-5457944352225901292.mlir"
    },
    {
      "type": "modify",
      "old_id": "2ccb5d0e49e45b9283fda1645017e1f258d094bf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-6947452231428007930.mlir",
      "new_id": "2e0fdc3759a3b4c991b4f69dedbe0f6c14ffa232",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int16_3__scatterindices___1___0___1___updateshape__3___u-6947452231428007930.mlir"
    },
    {
      "type": "modify",
      "old_id": "a03b51db0277b2ed9e73ccb92351dc3e3d98d13b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-7831187107835337863.mlir",
      "new_id": "58699fdf5fcc29704857378cca0ac0bae357d445",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat-7831187107835337863.mlir"
    },
    {
      "type": "modify",
      "old_id": "7e5619b293497b12e8971d28ef2e5f73c186392d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat3013699399251572191.mlir",
      "new_id": "abb620045a89d66b69d9343c5d9da82f549c5947",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_1__scatterindices___0___0___updateshape__2___updat3013699399251572191.mlir"
    },
    {
      "type": "modify",
      "old_id": "b9ea96e3271e6a5f625b0a98854db7b19281abe1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-2568914706362044844.mlir",
      "new_id": "13aff3e7ec78d30dc7f216682e2f1c396676117a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__2-2568914706362044844.mlir"
    },
    {
      "type": "modify",
      "old_id": "d0698b0cdfda68367edf5fa77c42c10cf9ab59fd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__21379637257835652405.mlir",
      "new_id": "9a9524f80f1cdf5e55bc0304a7a79eb82f4134b7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_2_3__scatterindices____2___2___2____updateshape__21379637257835652405.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2c0509870d1fc6eea577b55049ef7c0f26da0c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-6397860387266378208.mlir",
      "new_id": "9f7c130c0e369b0c7296266c2fa0d3cef98cc41d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-6397860387266378208.mlir"
    },
    {
      "type": "modify",
      "old_id": "cfc05da3b165e282d8523b6ea625a106306fd74f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-8425013369710626776.mlir",
      "new_id": "aab26d31c05e2c053ab489250c000894df1262f2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_40__scatterindices___1___1___updateshape__3_5_-8425013369710626776.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f33927c31e60eb74eb9b8acf98b8259ab92549a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-1354491335324461437.mlir",
      "new_id": "6b33fa67811f67867c2b092c756187e844bfab01",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_4-1354491335324461437.mlir"
    },
    {
      "type": "modify",
      "old_id": "eed2ca8459ed583304b7016f5d1d77f89784d64b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_44517803174587004329.mlir",
      "new_id": "7ba33072907836dd9c11b45e07cb004dc08f862a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3_5_4__scatterindices___1___1___updateshape__3_2_44517803174587004329.mlir"
    },
    {
      "type": "modify",
      "old_id": "9f828e41a40dc56972eda49a64f027776016e8ce",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-8298357739460833153.mlir",
      "new_id": "6cb74054382d32d74589b8ec985580056b282535",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u-8298357739460833153.mlir"
    },
    {
      "type": "modify",
      "old_id": "2de8d05361c5435154903f227f1e101831891c10",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u2992424440995594389.mlir",
      "new_id": "1002b6d10061c311de4d0a66a7dcba7c077b25fe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int32_3__scatterindices___1___0___1___updateshape__3___u2992424440995594389.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ff44fa3d4dd63f0efabec21cb51d43c405a0a21",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-6155816636504228609.mlir",
      "new_id": "ade4675da5e523c299df81a382676b1e23da15b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update-6155816636504228609.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a34bd31fcc9d3acc5f355d71affc6f858e29ab5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update5958272776881116115.mlir",
      "new_id": "0a4e591bc217a1c323135cb45f0f7900a8248b96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_1__scatterindices___0___0___updateshape__2___update5958272776881116115.mlir"
    },
    {
      "type": "modify",
      "old_id": "c65b4c905d8f4c20cac087935bbd0adc428f65f6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-273914920177501008.mlir",
      "new_id": "5ffc88a769f9114ed57e69b203edde4a79983f83",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-273914920177501008.mlir"
    },
    {
      "type": "modify",
      "old_id": "76fcc80ae6f6401837a82d315163b858901dc66a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-6476029564649474413.mlir",
      "new_id": "75f63a2d0653ecd35ca9cd873310bff92480faaf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_2_3__scatterindices____2___2___2____updateshape__2_-6476029564649474413.mlir"
    },
    {
      "type": "modify",
      "old_id": "726821b00789556d2c5344e61642738dc9167564",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-1853547627817211597.mlir",
      "new_id": "015e8e814816edf4fb5e551709dfb07e7eb049fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_2-1853547627817211597.mlir"
    },
    {
      "type": "modify",
      "old_id": "53e1a0cba050c52073e69272dc76328c1762b4c8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_22695725104585857772.mlir",
      "new_id": "062068fdaa13f64988e548cfef7ce9ecf4da90d7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_40__scatterindices___1___1___updateshape__3_5_22695725104585857772.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d1766566fe9363f79a2af1a836b8e413e6dc899",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-2838624526001024835.mlir",
      "new_id": "e0e61913f3d0a174e622a2ee02efb1ad0ceeab07",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_-2838624526001024835.mlir"
    },
    {
      "type": "modify",
      "old_id": "de6781ebd546a88594c7763276a36bfdfb9d42bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_7685550097225305461.mlir",
      "new_id": "b2cb4005165ea503f283315d8947bde2553a3960",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3_5_4__scatterindices___1___1___updateshape__3_2_4_7685550097225305461.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a564b9fd1ecdbd256287c69ffa82ccbcb340526",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1361580417478478018.mlir",
      "new_id": "847bc8c7bfb0cbb6912330e023aadf78c2281e52",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-1361580417478478018.mlir"
    },
    {
      "type": "modify",
      "old_id": "02f7f23bad4d5693dbe086a424d63f6cdb7cbf12",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-6118132633872574782.mlir",
      "new_id": "1f69f5c64eabb5bcd7dacd3b8cf562b4003236a3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_int8_3__scatterindices___1___0___1___updateshape__3___up-6118132633872574782.mlir"
    },
    {
      "type": "modify",
      "old_id": "8fc5e1564982c5d03d2f7cdb39c70d6a21d6e369",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda2503261450963630172.mlir",
      "new_id": "d34c4a1e8b10c78282dabd3e72e9b1cc3a2b3c22",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda2503261450963630172.mlir"
    },
    {
      "type": "modify",
      "old_id": "74f64c6ec84f1c60c2f48bcc48f7cdb1a9a56e44",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda5093204510233506868.mlir",
      "new_id": "b50ff58159bba817c9467cae634b13d1ce008bfc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_1__scatterindices___0___0___updateshape__2___upda5093204510233506868.mlir"
    },
    {
      "type": "modify",
      "old_id": "9126f3e6b5c7b3e07ad649688a1197e0c96d95ad",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-1750143131007774592.mlir",
      "new_id": "a1888335d3d445c9d58bf195906fe4b1257fdfab",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-1750143131007774592.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7ff67528ecc12413122e4c45f8b6c59f071e3cb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-5500787063730751651.mlir",
      "new_id": "ca7df64099b9faa4f4176b15ffea5bc276b7f504",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_2_3__scatterindices____2___2___2____updateshape__-5500787063730751651.mlir"
    },
    {
      "type": "modify",
      "old_id": "7b6390d70dc2e7da8a8b22b8ca1983fc9ef334a4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-5919758369527735070.mlir",
      "new_id": "cc349bfe2341fa5974d4d31fffce43bae304d8a6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_5-5919758369527735070.mlir"
    },
    {
      "type": "modify",
      "old_id": "e543e520aabcbf5fe7d126540fe70958aeebf5e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_57458529555874971234.mlir",
      "new_id": "e950ce20b240a4c9a6b313b80321f730e554954d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_40__scatterindices___1___1___updateshape__3_57458529555874971234.mlir"
    },
    {
      "type": "modify",
      "old_id": "97240b3e483e9fb23d9e81a1e4f16f3c355a6c0c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-636077671172413854.mlir",
      "new_id": "b33502ccc795d3ace779584d7257f7a035eca86f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_-636077671172413854.mlir"
    },
    {
      "type": "modify",
      "old_id": "bed373026773be29db55d6518727ebc20ea74c23",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_8211125442785068895.mlir",
      "new_id": "6eb55eeee136d158c1e3075af70b918ef9ad2dc7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3_5_4__scatterindices___1___1___updateshape__3_2_8211125442785068895.mlir"
    },
    {
      "type": "modify",
      "old_id": "0f52d3168470dd394f867f09729df24de8829e4c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-2867485987227787074.mlir",
      "new_id": "fc01a6de16808f3d5a56dd2b485dee766235adf5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___-2867485987227787074.mlir"
    },
    {
      "type": "modify",
      "old_id": "f452423c60adffe7871258b9c0ae41a39f8d718d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___381164792639576333.mlir",
      "new_id": "6a6278bec445b247072678fc814ac7c9ad1ddb6e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint16_3__scatterindices___1___0___1___updateshape__3___381164792639576333.mlir"
    },
    {
      "type": "modify",
      "old_id": "7c8e5d9514d995f5054aea0f1c984f68ac879592",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-2795949964342122630.mlir",
      "new_id": "31067156043ce23c7cb95dbdaa8ca0e6746c5a15",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda-2795949964342122630.mlir"
    },
    {
      "type": "modify",
      "old_id": "9ed1655651cc51048eea5936116816044ffeeb12",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda2250736341764409016.mlir",
      "new_id": "d4605c010b917fef5057b2a6574c925563ac6d7c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_1__scatterindices___0___0___updateshape__2___upda2250736341764409016.mlir"
    },
    {
      "type": "modify",
      "old_id": "edbc3f8df4f8a65bdfb4671df1e0a9f96d101f04",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-1690059249365063935.mlir",
      "new_id": "1bf6b3cdf3d4969e7e2f94eeba950bc0feeadeba",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-1690059249365063935.mlir"
    },
    {
      "type": "modify",
      "old_id": "f246005416bae206db8f196f99d44fd1c6ce989c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-7198034765269814555.mlir",
      "new_id": "2c1ab89831659e233c54292b53103c3c9b9c1a3c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_2_3__scatterindices____2___2___2____updateshape__-7198034765269814555.mlir"
    },
    {
      "type": "modify",
      "old_id": "33bc08bc0c959d92a80d7a028b9bf4e6883d6fac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-5318382943476393861.mlir",
      "new_id": "4487b02ce7b4d01af41cf8710227c17b5b0e0e66",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_5-5318382943476393861.mlir"
    },
    {
      "type": "modify",
      "old_id": "b2c4a2660d960827f9476ca694a089b8c034e1ce",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_57035426037223572327.mlir",
      "new_id": "4313ab47b6d3ecfcffe7954a394f2ac52dd07b46",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_40__scatterindices___1___1___updateshape__3_57035426037223572327.mlir"
    },
    {
      "type": "modify",
      "old_id": "c75fcc58a9902f087e5b6f80a5098a56a85ecf0f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-4101621119111344638.mlir",
      "new_id": "aa940ee9b818c29fb74ebd61bed35719efbe339c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-4101621119111344638.mlir"
    },
    {
      "type": "modify",
      "old_id": "08aa1e2304df8ed5876bc130398be42dc2a5469c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-6343906009227681817.mlir",
      "new_id": "ac41475c10e84cc99f5e1a1baccbcd8944b8d7bc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3_5_4__scatterindices___1___1___updateshape__3_2_-6343906009227681817.mlir"
    },
    {
      "type": "modify",
      "old_id": "10cd0bd96175d0f48c09f3e3d93d9c2e256599fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-3922149894643362258.mlir",
      "new_id": "fc9ca53e3e13aaabc2b4acafdf7104004344048d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-3922149894643362258.mlir"
    },
    {
      "type": "modify",
      "old_id": "884c572b58cedac282d0563dc77cfa449f0a6c11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-6180249292673263141.mlir",
      "new_id": "cda61a9358748526cb3a552101971a946864ba45",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint32_3__scatterindices___1___0___1___updateshape__3___-6180249292673263141.mlir"
    },
    {
      "type": "modify",
      "old_id": "612cd5cd8cafe8a0fbc72dc685ceea5d511121da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat4024776412691488168.mlir",
      "new_id": "a921bdc1d56d2e3ea5a5c08ee9a66baf9f081a46",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat4024776412691488168.mlir"
    },
    {
      "type": "modify",
      "old_id": "b6eac1148ba2bda9db06937cda13f2593a112d98",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat5272633470443816471.mlir",
      "new_id": "01d62a5cd3ca230a9be01aa1ee94e9ca9bc2f7a5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_1__scatterindices___0___0___updateshape__2___updat5272633470443816471.mlir"
    },
    {
      "type": "modify",
      "old_id": "c40d38746305f16d956a5db041022cfa8afe3c61",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__24766134113834505929.mlir",
      "new_id": "3beeefd001b2aa35b448faa8f9aa54b4f1ff5026",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__24766134113834505929.mlir"
    },
    {
      "type": "modify",
      "old_id": "fffd4605b0d618d55b16c0886cbcee07a13c9192",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__25513192764788487323.mlir",
      "new_id": "8e6ff63f0f51f5ba2fdcb09e1be2f374ac6c75bf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_2_3__scatterindices____2___2___2____updateshape__25513192764788487323.mlir"
    },
    {
      "type": "modify",
      "old_id": "96eee4ac32d9b8f0581a29cc9f110ae2986a3541",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-8174486124717837339.mlir",
      "new_id": "d220c667ddb12192cd464834b56815f761e92d4f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_-8174486124717837339.mlir"
    },
    {
      "type": "modify",
      "old_id": "0e9ab705942fb4135ea267910a5f693ef745c2b4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_1143847998952290388.mlir",
      "new_id": "4b30b1ff4feb21646ed092981fca4030798545ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_40__scatterindices___1___1___updateshape__3_5_1143847998952290388.mlir"
    },
    {
      "type": "modify",
      "old_id": "84977038eb912de779e3d926e1d4ce4b51a8131d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_41873808453015829452.mlir",
      "new_id": "f18d7a5827c9c328179efa53e7f6a1f035f6d335",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_41873808453015829452.mlir"
    },
    {
      "type": "modify",
      "old_id": "5f1845fe2a5dfe6a5b4f868892ce9f33402d2c57",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4746412150290416873.mlir",
      "new_id": "9fd83e9556636a3b5ffec30281b942c33c059217",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3_5_4__scatterindices___1___1___updateshape__3_2_4746412150290416873.mlir"
    },
    {
      "type": "modify",
      "old_id": "11ba3fd0b5e7187fe58438cec3913f97f6582037",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-5426271295044320436.mlir",
      "new_id": "7e0361f763ca27ab6c204c46e6a6d9c4025ced77",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-5426271295044320436.mlir"
    },
    {
      "type": "modify",
      "old_id": "8fac5b196026195eafcb274c555cf5e2283d503d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-6108961382462025285.mlir",
      "new_id": "3fd6e1c604896b4636e0eeed0c170e4bf7647f74",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_non_unique_indices_shape_uint8_3__scatterindices___1___0___1___updateshape__3___u-6108961382462025285.mlir"
    },
    {
      "type": "modify",
      "old_id": "a476f87bc86cd70832e6998cb848bebe875661c5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-3360477254955707104.mlir",
      "new_id": "558399ae38fd740ab62d4212dad1ce19d07946a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-3360477254955707104.mlir"
    },
    {
      "type": "modify",
      "old_id": "3dc5a3dc995dde8a1ad047e7e42e60c61ad14892",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-7946346305990918934.mlir",
      "new_id": "7f0fcd92960dc93d2f5640ee7eaf56c34b3d491d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewi-7946346305990918934.mlir"
    },
    {
      "type": "modify",
      "old_id": "69be3cb02997a50c36b157c641bcabc75c51b7ba",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-4215525067889211598.mlir",
      "new_id": "17c8f55c0078ab5d22fea05e4ab478e1c1d2357d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew-4215525067889211598.mlir"
    },
    {
      "type": "modify",
      "old_id": "5c534e62f82aa2dac78e155cddba1540289af411",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6431305253276105236.mlir",
      "new_id": "083b62d88306b45c34ccc0e6025e0609f9b05c14",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatew6431305253276105236.mlir"
    },
    {
      "type": "modify",
      "old_id": "7dd718b962a4aca78dfa0553d4ed9c874dd994cb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-2780272603278834227.mlir",
      "new_id": "5b302ddd7e77e9dc95f7a52e0118c5098af116fe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind-2780272603278834227.mlir"
    },
    {
      "type": "modify",
      "old_id": "0b180100480735f010f24455300d4f44c888c16a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind4104176976515763082.mlir",
      "new_id": "720c909b40a1d8d930517334c66220b66448e4eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewind4104176976515763082.mlir"
    },
    {
      "type": "modify",
      "old_id": "6d9966e9af456ad87bc7ae6f344a6eea293df09b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew2559860308944517111.mlir",
      "new_id": "eeffe90fbad390205bbd091d217061e08044d2b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew2559860308944517111.mlir"
    },
    {
      "type": "modify",
      "old_id": "47f9a4ab6972a2d5fa9857f34b806fafd6e9270c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew8742465151666686826.mlir",
      "new_id": "c2dd87c040f150b47aa0ab784eb5f1c1f66c3595",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatew8742465151666686826.mlir"
    },
    {
      "type": "modify",
      "old_id": "f75b11a7e9da596a8b4186fb2b2c68fe65ec7ff2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-1881389378983648424.mlir",
      "new_id": "3dac5bc915d2b13787bfc474fe2512e6b2a08c52",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-1881389378983648424.mlir"
    },
    {
      "type": "modify",
      "old_id": "6f29fe44e469d1b9c41a7eb5cfdc1dbc21e7a5d0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-6387272614647063159.mlir",
      "new_id": "155b56244439451e6f30b90ce91b9b5777dcb75d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___update-6387272614647063159.mlir"
    },
    {
      "type": "modify",
      "old_id": "9c79befa843f8b8a1d467038d6717611c0efe132",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-335502595080908761.mlir",
      "new_id": "d88c3f4c7445cb1ea25823bd5499d45085bd7244",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew-335502595080908761.mlir"
    },
    {
      "type": "modify",
      "old_id": "833936453a86ac4bd749bdba0a172ad21efe2d80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew5647609707928580429.mlir",
      "new_id": "5adff775574ce8df8bc837d92d730dc3b7cca131",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatew5647609707928580429.mlir"
    },
    {
      "type": "modify",
      "old_id": "f0aa703936c1c5576d02f08a12102e46afd270cc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-5889877709785329052.mlir",
      "new_id": "6589eb902d6ed23f53d5da3f6b210150f895b3c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat-5889877709785329052.mlir"
    },
    {
      "type": "modify",
      "old_id": "e0d96d76830e2b29dea3f0de4a833e396e64a6fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat3688725826103030188.mlir",
      "new_id": "ce988822512fa3d902a783cfc82a3ea305d54b42",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updat3688725826103030188.mlir"
    },
    {
      "type": "modify",
      "old_id": "f2c80bc1cbf1a54235f367c97f5dc224a16f0572",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi8099031119810233793.mlir",
      "new_id": "027446119d0eb4c6cf4b620e1e7e2d7fa976e877",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi8099031119810233793.mlir"
    },
    {
      "type": "modify",
      "old_id": "2e0b6c1641d49607c940dca03cf5de1a81252029",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi8325755295697371291.mlir",
      "new_id": "981bb00201ed6126507efe529647737b1a1ae796",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdi8325755295697371291.mlir"
    },
    {
      "type": "modify",
      "old_id": "67eb9f6c772b5193036d27a38dae825e80947ae6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3417738498369290757.mlir",
      "new_id": "8374fa388dcfa9dcd3c07dd19913a32753155cd6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd3417738498369290757.mlir"
    },
    {
      "type": "modify",
      "old_id": "2624def57b3b25d4f13c0987fdf8e06c043aa7b7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd9109906871151307668.mlir",
      "new_id": "2d29fcbdc5cceff393feae085bd11d4e7117b733",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upd9109906871151307668.mlir"
    },
    {
      "type": "modify",
      "old_id": "882618f630fa9fba2f61912a756b6376abb43fed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-4702680586383969660.mlir",
      "new_id": "01c70115d8a5d660f2638d52a9ac43303304d78e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-4702680586383969660.mlir"
    },
    {
      "type": "modify",
      "old_id": "f873d62ddb3827c0eb55b7756bd480255bd4e028",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-8795005146239087129.mlir",
      "new_id": "f2f4fb6604e6451b0f1b19aa4da055dd1bfe6868",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___update-8795005146239087129.mlir"
    },
    {
      "type": "modify",
      "old_id": "69794c58ff5cdac7565ef4d950bb43286c70d74d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-6656881674249389345.mlir",
      "new_id": "4ffebe4c59dc25268054e2db8b8ab5259d1cc478",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_-6656881674249389345.mlir"
    },
    {
      "type": "modify",
      "old_id": "b20c62770e948fd294a02c8768375b90658d3f62",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_2316509734154499027.mlir",
      "new_id": "24d79d89fc21c2c802b2c98f79fe771782c67771",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_2316509734154499027.mlir"
    },
    {
      "type": "modify",
      "old_id": "2998aa809f02c1354cbad997521f4851e5166813",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-7981361882450982124.mlir",
      "new_id": "7a2fd28ca727021f80e13a0a71a7a5310a54a854",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___-7981361882450982124.mlir"
    },
    {
      "type": "modify",
      "old_id": "19feb44739f1af211358bbc7c760226f95a79b4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___1647529870284745307.mlir",
      "new_id": "8d3a69148c3c0b6aac51ff5dc479e7851964e87a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2___1647529870284745307.mlir"
    },
    {
      "type": "modify",
      "old_id": "6425605c2ec1966a9f4d42ef5423fbc9ac73d8b5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates1467080413083166032.mlir",
      "new_id": "69ca7cb1205a278c4187f37c3f9fc527b12c7900",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates1467080413083166032.mlir"
    },
    {
      "type": "modify",
      "old_id": "58deafe9d7c6f943f130fecc3ed124bd1f8c2eed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates3651937655910732508.mlir",
      "new_id": "91f9e52e2b2c8206be979dbefaea19473e314573",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updates3651937655910732508.mlir"
    },
    {
      "type": "modify",
      "old_id": "f7f95911bb3ba2eefbd90345e2c2dc4d527f2e13",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-1705989900307999079.mlir",
      "new_id": "6fe0d21b05f2cace87f854aba6ecc8cfc31e34c1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-1705989900307999079.mlir"
    },
    {
      "type": "modify",
      "old_id": "0a01a4b5e5ef5fe187d9c14f07438c6ed0a77d0d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-246492594110861908.mlir",
      "new_id": "6c185a4ccc877987efa050c97a653481e40a39f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewin-246492594110861908.mlir"
    },
    {
      "type": "modify",
      "old_id": "3a8620d30ca5dbc47013cfa051b766c063bdfb7c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-4346732979607199533.mlir",
      "new_id": "c1e8f003208fdbc3c009c2351736d7af13d7be15",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-4346732979607199533.mlir"
    },
    {
      "type": "modify",
      "old_id": "2d9cce668d70174f865638d0a061662cc87c675c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-5946980796241614660.mlir",
      "new_id": "53934f8a92d8d104de7cad3269adbaacb9e3183a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewi-5946980796241614660.mlir"
    },
    {
      "type": "modify",
      "old_id": "5870eb273d637feacbfcb7b05dd18e4fd47b04bb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-306016717615730660.mlir",
      "new_id": "d89ca1587d8a7060cd6eca373c1f90eac408a07b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo-306016717615730660.mlir"
    },
    {
      "type": "modify",
      "old_id": "1cbc2aae3ec07fb5b564b9cb14c5392e71ad5267",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo3890941391873863717.mlir",
      "new_id": "9f202ba97fffac158386cbe7cf9509d402b6df89",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindo3890941391873863717.mlir"
    },
    {
      "type": "modify",
      "old_id": "d4118b72fc948a6f0d4f5ab27e13fe45490c6ffb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi1839078693190890993.mlir",
      "new_id": "4312e8c330bd7bafb401d1bdb8ef897d83b9ad6d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi1839078693190890993.mlir"
    },
    {
      "type": "modify",
      "old_id": "0f3b32d339a680deb9e1237d0828660175d36d9a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi5761561957537694476.mlir",
      "new_id": "351f0f7478cbaef4ba56a706c2b9a26e86f823fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewi5761561957537694476.mlir"
    },
    {
      "type": "modify",
      "old_id": "dd10b90cf4bb6c71ac75e51616b5948f4321e50d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew6252979626325873169.mlir",
      "new_id": "7509b1e1b677a23c6c6341b7885a1a9c4d72b41c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew6252979626325873169.mlir"
    },
    {
      "type": "modify",
      "old_id": "427976b5e101eab1ff6d6e4073c8973653b9e29f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew7494928465242488531.mlir",
      "new_id": "e7ba4e9417fbd07e56860ff5f74aee57eb7609c0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatew7494928465242488531.mlir"
    },
    {
      "type": "modify",
      "old_id": "099dbadc6be126621b4bd5b4a532e1fd9cfe3528",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-3584544566206542049.mlir",
      "new_id": "70ee7f9d1b242224f6b99cdb42e7be51f728b2ac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-3584544566206542049.mlir"
    },
    {
      "type": "modify",
      "old_id": "f204a02f9a438f07e32d5eb22c6f782ce4085ed1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-7572000476884458861.mlir",
      "new_id": "a386a1c9477d8a6f244a56f925a5ccf125cde663",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewi-7572000476884458861.mlir"
    },
    {
      "type": "modify",
      "old_id": "443d45cd095183858a8eb2b7c01c2e835c5d2997",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-598301403947229232.mlir",
      "new_id": "54682654801e58637b9a714ff902983eff7d0107",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update-598301403947229232.mlir"
    },
    {
      "type": "modify",
      "old_id": "01ac4d5b1dd56cad958d00dd700197e049d696ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update8652299584681040983.mlir",
      "new_id": "536864ffdf43e8055c28c69ccf38a0f3433d46c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__update8652299584681040983.mlir"
    },
    {
      "type": "modify",
      "old_id": "ae72d2112b1bd67abb1511e47035269328c40cc5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7668310686109821516.mlir",
      "new_id": "10779de5600c19e722febf0a75d6094e948620d8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim-7668310686109821516.mlir"
    },
    {
      "type": "modify",
      "old_id": "bbe62508856490ce802df4489d707f603dc4272e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim439772284860314777.mlir",
      "new_id": "cea59daeaa62a541da5492337164377a55e3ddcc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdim439772284860314777.mlir"
    },
    {
      "type": "modify",
      "old_id": "7c16a24c3bc42b9d8e29648496a2e109a38a06fc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-8229569663899407117.mlir",
      "new_id": "640c0f1d824151b67d96b7a681d967ba42717930",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-8229569663899407117.mlir"
    },
    {
      "type": "modify",
      "old_id": "f8e4db1c0b8d92011278d1de6bae56fa6565afe0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda1985329647950112572.mlir",
      "new_id": "4820947e41591fde728fca02e30be2b539d2797a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda1985329647950112572.mlir"
    },
    {
      "type": "modify",
      "old_id": "2287886a451ffa4e8ef9092cf144f12ae0faa02a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-8523218113249752123.mlir",
      "new_id": "dc8219e467277a8ffe8eb4693af2fcacd865572d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew-8523218113249752123.mlir"
    },
    {
      "type": "modify",
      "old_id": "c3d73b921701357e387f8a0e2519933d7e79f46a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew6735558503942351692.mlir",
      "new_id": "6450f33f0f332bed365aa3d2d5774d1b84727995",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatew6735558503942351692.mlir"
    },
    {
      "type": "modify",
      "old_id": "4fe9d6fa4f08287bb6d5cb477462c70d0f63a460",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-4258334668196109132.mlir",
      "new_id": "a59306c12def3f6bb5417cbc67cbcdd7be44b9ca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-4258334668196109132.mlir"
    },
    {
      "type": "modify",
      "old_id": "760bb26525c39aa72394ae21d50ed19961ecb2f5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_76621240554816602630.mlir",
      "new_id": "9bdbc3b53441b69eaf8c6cdf3f1b3e596a6e3f27",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_76621240554816602630.mlir"
    },
    {
      "type": "modify",
      "old_id": "f9eb809d3de269ec60b20a344ae1a02942ebfb93",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-2362187331049583053.mlir",
      "new_id": "1c76c8f5c353d7b054baa757196f1457277597c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-2362187331049583053.mlir"
    },
    {
      "type": "modify",
      "old_id": "375fc7c80a2dd36456b94d893f4d699f283ea6c1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-5820826746249069089.mlir",
      "new_id": "1bd87c924b8bb947fb92794325804fc8e910c860",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-5820826746249069089.mlir"
    },
    {
      "type": "modify",
      "old_id": "741153a65ef6f9b27ddb8de1b96152385db2364e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-8865046078508563898.mlir",
      "new_id": "0f42cc542bf757e0cf4dc2f00639701b66187c28",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh-8865046078508563898.mlir"
    },
    {
      "type": "modify",
      "old_id": "25928fe859af791d2033ca91d36fb29e4244672d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh3362558007660062089.mlir",
      "new_id": "c33b15d4a8dff67267e216e4f8e63275abd2c8c5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updatesh3362558007660062089.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ea2788efeb8c8cbb1d5cba9fa1e2e4db10a2809",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin-6464005931074999144.mlir",
      "new_id": "51847cc011ea9945686cc82074ea442f4ec98ac2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin-6464005931074999144.mlir"
    },
    {
      "type": "modify",
      "old_id": "22179f9e6b8fe24a0bba0e8f8d93283493c107de",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin1632551694578966009.mlir",
      "new_id": "dada15399625dc7018e65df85343ae6aae47f0de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewin1632551694578966009.mlir"
    },
    {
      "type": "modify",
      "old_id": "6a6779aa2f264d679185ac352f6e2f347d76d73e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-4057511293439628981.mlir",
      "new_id": "f250d41f1d9b8fecd344fd0d7e321e34040c2d31",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi-4057511293439628981.mlir"
    },
    {
      "type": "modify",
      "old_id": "e252a4d56b1b0633dccf69c1dba0efe2ebfbf702",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi465178004043834746.mlir",
      "new_id": "a4bf3d462dfc82088a483730b65a5b34f61bc61f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewi465178004043834746.mlir"
    },
    {
      "type": "modify",
      "old_id": "a219ba16ad1a3f769f99053bba38f8f6672a0e42",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo3601856020145074869.mlir",
      "new_id": "36a163011252e9af6a369460e872cf8a47327fc3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo3601856020145074869.mlir"
    },
    {
      "type": "modify",
      "old_id": "7862e7ecb9aa268751a02d9493afc17065263393",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo4848867162453427424.mlir",
      "new_id": "9a704075897795740e37df68fab13aaf3bdbb5c4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindo4848867162453427424.mlir"
    },
    {
      "type": "modify",
      "old_id": "9b20dd8f0bada40559617482567da590ba8191c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi5803760535453716447.mlir",
      "new_id": "6ef4ec794bfbe7182773f61d939aedae90dc83b0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi5803760535453716447.mlir"
    },
    {
      "type": "modify",
      "old_id": "69392740c402bb8e4a0d2c17fe9865abff0e492c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi676591662531539119.mlir",
      "new_id": "8aa53578dce20fb975bc4b9ac31eef6fe19114fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewi676591662531539119.mlir"
    },
    {
      "type": "modify",
      "old_id": "809078147968914881022703b29f535ce8367ffb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew-6954106673892958067.mlir",
      "new_id": "b9350c40bc8751e5c224407c438ba9edbb9e9781",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew-6954106673892958067.mlir"
    },
    {
      "type": "modify",
      "old_id": "6e3a853a44d7e583c542e3d3467b01fc61295829",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew6445319413769660340.mlir",
      "new_id": "746ceded47ef9ffbbfd51883fccc20c8e7a74dbe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatew6445319413769660340.mlir"
    },
    {
      "type": "modify",
      "old_id": "26ed2d649b09a2b5b1773265e29e09828a261e1e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi7109546237705646979.mlir",
      "new_id": "7afcf0495b832ba12af93ad42b18c33cae616d37",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi7109546237705646979.mlir"
    },
    {
      "type": "modify",
      "old_id": "15d24e86eaf74c5d77b413f00d9e377e017c79fe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi8953743155862854282.mlir",
      "new_id": "83b0d2e8533b14bd233d0c2b6acfa8bb0605389a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewi8953743155862854282.mlir"
    },
    {
      "type": "modify",
      "old_id": "df075708d2f444fc6155b746d0f9712a13fe72d1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update2709164478077877077.mlir",
      "new_id": "9cdf2739b27ca5fb034a3c0bb9107c630b067cd1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update2709164478077877077.mlir"
    },
    {
      "type": "modify",
      "old_id": "f590d3e9355a9b08a8feacdb12db97895a25ff5c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update6879970989976731825.mlir",
      "new_id": "e9e393ec11e6b7bf757c3d14561ecfc9e638a259",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__update6879970989976731825.mlir"
    },
    {
      "type": "modify",
      "old_id": "e3bf038de9e5d874e73533b63ffdba291039510f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-2705209602339395263.mlir",
      "new_id": "a6bec8ec3564ace6bd0e8ac50e012130f8b944fd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-2705209602339395263.mlir"
    },
    {
      "type": "modify",
      "old_id": "374460c86bfcfab70291db5ab9f7477307db7a07",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-4975626822862635303.mlir",
      "new_id": "8cbd5a294cff277f52b875db623b231b36afc162",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdim-4975626822862635303.mlir"
    },
    {
      "type": "modify",
      "old_id": "e707d823e695d51c5763baf101cdba6806b01a95",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-8979056223101967933.mlir",
      "new_id": "58a46c64dbfae8a43b4aea02d961dd6ebbede75d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda-8979056223101967933.mlir"
    },
    {
      "type": "modify",
      "old_id": "7d02109bcf9dc69d52a6c99902bd630e97816e2a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda7605760556573737631.mlir",
      "new_id": "6f1242aa62f2396a8b70712b72f5e2793319231e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__upda7605760556573737631.mlir"
    },
    {
      "type": "modify",
      "old_id": "17c22c2e1e80a6a00d2a06b3cd817ce52210fd1c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7612717851277605180.mlir",
      "new_id": "371436c7e726dba6255d72d1070d05c690b51ef7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew-7612717851277605180.mlir"
    },
    {
      "type": "modify",
      "old_id": "805a2815a0a1e06a09818fdd68e95fdd4eed9708",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew3278581319799892390.mlir",
      "new_id": "379e75f7eca72a33cc96e92d666676735abe48a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatew3278581319799892390.mlir"
    },
    {
      "type": "modify",
      "old_id": "a875306db6b6e2e9512c68a44a3a1a6a931833c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-2031264665322592657.mlir",
      "new_id": "04511b7a2e86ac139bf8ead25c2fa478e558f36d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7-2031264665322592657.mlir"
    },
    {
      "type": "modify",
      "old_id": "a89c90455d1d4af6f68e7a1bca03c49fc0ad897f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_76375060216127585701.mlir",
      "new_id": "2502ed7d1f1d21468f7b79753e7d220833101d9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_76375060216127585701.mlir"
    },
    {
      "type": "modify",
      "old_id": "a43ffbd8dc70621cd80bc522760b2b50341ed440",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-5359808417426891675.mlir",
      "new_id": "c58890625479c10ee718f12eeadf2c7a8f2625b1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____-5359808417426891675.mlir"
    },
    {
      "type": "modify",
      "old_id": "fed7143612f11261a293a54bf5a53fb001791233",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____2501261658899671469.mlir",
      "new_id": "81e12057af9929a45b17bb9ec8d79aa7d5774b68",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____2501261658899671469.mlir"
    },
    {
      "type": "modify",
      "old_id": "64258329f0b617fe117b4f049e3940d5c084422e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh4730208024092888126.mlir",
      "new_id": "bd0948ed973d622441bb532503f4e8e27098187c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh4730208024092888126.mlir"
    },
    {
      "type": "modify",
      "old_id": "43a96603f3fa23b8a684c253dd5d1986038f6e6f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh979978458744744089.mlir",
      "new_id": "4ab6782a2dc09729a286e84fce5a075c778472c2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updatesh979978458744744089.mlir"
    },
    {
      "type": "modify",
      "old_id": "7c58d0c3a7c8e9d73f40e0bb8f22aa75b3894bc5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-894643363405551362.mlir",
      "new_id": "28e4671682b8db4b8c90edaa365b5707ae03c3f5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo-894643363405551362.mlir"
    },
    {
      "type": "modify",
      "old_id": "997ede80ab5ce79698bd6b3dbab40578dc0a3975",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2210039802490704290.mlir",
      "new_id": "a5a06b9d6c3cd12fb5aa90410a2741175e46fc0e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindo2210039802490704290.mlir"
    },
    {
      "type": "modify",
      "old_id": "84c34e40e4198718b3065e9d5af45b438c8eeb53",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind4564339569477160634.mlir",
      "new_id": "52d265c76624103c236c49f434435eb9cc2dce51",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind4564339569477160634.mlir"
    },
    {
      "type": "modify",
      "old_id": "9cf119bb5ca2e57c00a6eb2c5a4e6dbc4f84ebfb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind7066681658393563090.mlir",
      "new_id": "790e957073dd17ef4bcaa6e40654be82218a67dd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewind7066681658393563090.mlir"
    },
    {
      "type": "modify",
      "old_id": "d65a9655e4f242e5726e1b7d4d137809b36ff620",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd1131523970815717172.mlir",
      "new_id": "65527d3332a3482fd7bd58fa7a85fd9f4a9757a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd1131523970815717172.mlir"
    },
    {
      "type": "modify",
      "old_id": "6986645b020d6c35386aaf5da4ba40d4c4c1c998",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd7341461832802061798.mlir",
      "new_id": "df667388a73ef8d7b6f2698ea64d298a3feebd24",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowd7341461832802061798.mlir"
    },
    {
      "type": "modify",
      "old_id": "08945c5a6d3180646ca44c7e50c137a78fa2dddc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind5115612453657169070.mlir",
      "new_id": "5248a7a055210b251bae7f81eb403143513d8ee6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind5115612453657169070.mlir"
    },
    {
      "type": "modify",
      "old_id": "0ad555ab44a3af98601a67bc9dda35b49f026f3b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind8686182913507257521.mlir",
      "new_id": "ce95bb22a7cfcd8b77df617512b505b6d3b6053e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewind8686182913507257521.mlir"
    },
    {
      "type": "modify",
      "old_id": "bfc6a5f9543559128bdaadd0f7fe97c97a49cb65",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin3357486422049699870.mlir",
      "new_id": "3d106883534029d48a683829fb0478c4bf4e730c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin3357486422049699870.mlir"
    },
    {
      "type": "modify",
      "old_id": "5a9252bdee5a5dec3fba9f215c601cfcf1c3300e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin5579100838365427816.mlir",
      "new_id": "c28ad8ce661a6c0bf4f8edfec2f860b1157fe15c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewin5579100838365427816.mlir"
    },
    {
      "type": "modify",
      "old_id": "d8c68b706da98e90e54e224dbd06787117a505b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-5330481510598916239.mlir",
      "new_id": "a5e2d8436baac8c84ca389f47e06f61853710c18",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind-5330481510598916239.mlir"
    },
    {
      "type": "modify",
      "old_id": "1c601a9f8853af24a22f12efe46f35b5cdf3ea29",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind6212760972741628489.mlir",
      "new_id": "2213343d2688df00f0b328c876521e7e6a39e8ed",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewind6212760972741628489.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b0f1a70f6d9eae863fc748f1acc2b80daa20d50",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-4661087241743951708.mlir",
      "new_id": "df045cd3a2b88084fd3bbe2d7fc3634b49f9b746",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi-4661087241743951708.mlir"
    },
    {
      "type": "modify",
      "old_id": "829074492ddf11e13d15c01f3069f825305d98cc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi2227239171340197214.mlir",
      "new_id": "b15ef89fd743c2aa091851654149465b585b56a5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewi2227239171340197214.mlir"
    },
    {
      "type": "modify",
      "old_id": "508a8e143334eaac90c1efc09839a30cbc54a4cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-3022424246807224585.mlir",
      "new_id": "f475426b64a717f79964b8eeab3849af21033b74",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_-3022424246807224585.mlir"
    },
    {
      "type": "modify",
      "old_id": "fc7d595a02cae338d869ae7a563ddad9eba8a575",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_6495970254371841842.mlir",
      "new_id": "80556355da4d7c85fed32a979b11be13c9095b86",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims_6495970254371841842.mlir"
    },
    {
      "type": "modify",
      "old_id": "d60927b19b958119faa9b7cd4ad511548f322107",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-4024893389875354515.mlir",
      "new_id": "28251556619d9fe07650ac93db14bc7ca69f6594",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-4024893389875354515.mlir"
    },
    {
      "type": "modify",
      "old_id": "0367820b6d9f182d5a217b7a1bbace1198194a68",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-5668681648500657011.mlir",
      "new_id": "1136380013ae034eb74aa2d537625f085789a2db",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-5668681648500657011.mlir"
    },
    {
      "type": "modify",
      "old_id": "6c89e3df4ccc2ce2df5c67ae4e26dae78d9f75bd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-9105649694610227047.mlir",
      "new_id": "15d4997d3cd1959e904564f017a4ab8e7e61af83",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin-9105649694610227047.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cdf6b4887f745094c473ffd64256836b374bf7c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin6073515528611323777.mlir",
      "new_id": "3e44cec1de371abd4125578b202006cd8985d6b9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewin6073515528611323777.mlir"
    },
    {
      "type": "modify",
      "old_id": "6bf2a3da71a771f08f1025df464a11c656ffd1a5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3882476055472377626.mlir",
      "new_id": "617b4fcd697b7995d876641c9130405ade95dc1a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3882476055472377626.mlir"
    },
    {
      "type": "modify",
      "old_id": "85b07c9162a9602bbf5d0e1267e61809cf15d231",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-513754655167866318.mlir",
      "new_id": "563fd6d128bfac5c560c82f292f883e9e752d203",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-513754655167866318.mlir"
    },
    {
      "type": "modify",
      "old_id": "15a924b6653a7ffceba981eaa215b345e1306e5c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-8966013931511561723.mlir",
      "new_id": "61d72811deda48b33cd16520744814ad94147837",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up-8966013931511561723.mlir"
    },
    {
      "type": "modify",
      "old_id": "051c9269e7cee7555cbe3a4e1596e626d4b9edab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up391128158965102141.mlir",
      "new_id": "1ebd6fac892b15c61541863f0e4145de1d785355",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up391128158965102141.mlir"
    },
    {
      "type": "modify",
      "old_id": "528c468fe2a2acb6d740c8f742c101f5a8b20492",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-9078196501509989682.mlir",
      "new_id": "cc9213d1e116c0eec81fada4df1db726b822ea50",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap-9078196501509989682.mlir"
    },
    {
      "type": "modify",
      "old_id": "69e26c30d2d9218ef624cb067b76917052261e73",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap5700558581733748335.mlir",
      "new_id": "7f346debc7996801510321ddeb41bb86839fb4d1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshap5700558581733748335.mlir"
    },
    {
      "type": "modify",
      "old_id": "2783846d04a4b2748e7f0f5554f875f791909975",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-6562225039484538740.mlir",
      "new_id": "5d79652ded4fa2f22cb2ecc4c200a74a1dd10e91",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo-6562225039484538740.mlir"
    },
    {
      "type": "modify",
      "old_id": "560b8150d4f6a3e810f06e4f3a74cc655c9872a8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo8232220520292271211.mlir",
      "new_id": "824c3aa1f9dde33667c706056070f91f230aa05b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindo8232220520292271211.mlir"
    },
    {
      "type": "modify",
      "old_id": "ac79735e157c241d4dacef7c64d7a7cdac4141e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind-7916337849519059432.mlir",
      "new_id": "5663d962bf6df7ec2bf8674e76cecc76261b279d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind-7916337849519059432.mlir"
    },
    {
      "type": "modify",
      "old_id": "2c832fb2214ce41f20ed77c6bb617d8f8cc8bc32",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind761967631948328949.mlir",
      "new_id": "ffd33cd47c0c670a5ce61e814bab3a37982e4f51",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewind761967631948328949.mlir"
    },
    {
      "type": "modify",
      "old_id": "527ee5d01578714dfb51c266e56e04caa6f1a4c1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-5359430482089778863.mlir",
      "new_id": "34c639ca08e344b318075cb962612221a2f13b02",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd-5359430482089778863.mlir"
    },
    {
      "type": "modify",
      "old_id": "851b53dc3134ed6ee53a3c0c4903e13b78a63f17",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd5240083812117045369.mlir",
      "new_id": "4c406247beddeac3033a78cfb069fb8c6358379d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowd5240083812117045369.mlir"
    },
    {
      "type": "modify",
      "old_id": "0bc679504747d080cd718a0750dc2f44992e5638",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3880842726960184803.mlir",
      "new_id": "0593739258d5e828aca31f2a9c0f269f14902b37",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3880842726960184803.mlir"
    },
    {
      "type": "modify",
      "old_id": "7069c24a77a7df630edb51d07ca11fc517e31c5e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-849743020913739099.mlir",
      "new_id": "f5fc5edbe4f53f4960f4ac851e619f2bcdeb3eb7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewind-849743020913739099.mlir"
    },
    {
      "type": "modify",
      "old_id": "e9528f82e9cd3ef76a095d88ec424871053ef991",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-1988034303685772822.mlir",
      "new_id": "4fc45df460b94a23da4cd460d53ee5abc7622bcb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin-1988034303685772822.mlir"
    },
    {
      "type": "modify",
      "old_id": "a6e16f8967a03f66d9a83ae7bddf30bfb94db0f2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin217957902070723668.mlir",
      "new_id": "fef6f8d72eb0a372edff59c5a1980e72e4642618",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewin217957902070723668.mlir"
    },
    {
      "type": "modify",
      "old_id": "71dd5dbadc80f5c3763d8ebbe052fee37583e353",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1045259206755100465.mlir",
      "new_id": "97d8d49d1e148d1f357d3a5b3c5b4f12215259af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-1045259206755100465.mlir"
    },
    {
      "type": "modify",
      "old_id": "1869ee52ff0184923018d790ff9a49e273a3a86b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-2163171530325055090.mlir",
      "new_id": "068b431bf8dc38b6918d8400bfd403c957c66269",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewind-2163171530325055090.mlir"
    },
    {
      "type": "modify",
      "old_id": "9630b85d18a1fd958ddfd0f68420962ee70b6eb4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-6750428638558261011.mlir",
      "new_id": "ab69e7177250c799a4e610f96413e47c2c2f7bbd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi-6750428638558261011.mlir"
    },
    {
      "type": "modify",
      "old_id": "abc28b8e6ae54659cf07e23b1060d86e72ff06e7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi3312930273958637148.mlir",
      "new_id": "efb7fe2a5e89f0a1cf85d63a7cf0dcd1acd1289f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewi3312930273958637148.mlir"
    },
    {
      "type": "modify",
      "old_id": "8616f24eefb0289b9de089d0c39377ac8704282e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-2160631094585953130.mlir",
      "new_id": "5ebf10041b00f11b59919e1680b812ece79bf85f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_-2160631094585953130.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b5cde7c27fd90b7d6951570869a471e323f3a4e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_5211705405518386156.mlir",
      "new_id": "479fa00bda933eb47a4faf29fff7b040d9d6f21b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims_5211705405518386156.mlir"
    },
    {
      "type": "modify",
      "old_id": "2ef9b91ff1b56caa132a5413848ac835b7d81d14",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-8648264117507005007.mlir",
      "new_id": "82ea995061ebc8a7c18aea74e0b2428bcd0e2d45",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-8648264117507005007.mlir"
    },
    {
      "type": "modify",
      "old_id": "6bcbf54c22efda3d2abd7ad45ed61302a7dc1b96",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update6159597994996988558.mlir",
      "new_id": "0f6462772e13e4c18be680a539d506aaf1ea6079",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__update6159597994996988558.mlir"
    },
    {
      "type": "modify",
      "old_id": "4a7324c59b6acf1b8bcc337ac35ddaaec3c420fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin3292662860220954186.mlir",
      "new_id": "f949d81454b34060fd4480237f69fd60912793dc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin3292662860220954186.mlir"
    },
    {
      "type": "modify",
      "old_id": "aaee353eda725ee9c791f7274b0dd4d07499c079",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin8363876055077466091.mlir",
      "new_id": "753a1c5aad4dac53a0673ac9ff1bbdde1a792f81",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewin8363876055077466091.mlir"
    },
    {
      "type": "modify",
      "old_id": "52d9f669167c8c9c4b6a8f80ebba17fde12e6a8c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__1300960516346061501.mlir",
      "new_id": "41c013f5bf819f3365e67dabe952bee2e6fb6ec9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__1300960516346061501.mlir"
    },
    {
      "type": "modify",
      "old_id": "133ab730cc37e155e5105aed40cc74cee84de6ca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__8366371928875377100.mlir",
      "new_id": "a2917a51273bf3ced82400555f109ad32e761e9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__8366371928875377100.mlir"
    },
    {
      "type": "modify",
      "old_id": "4858907dfb385203de43b72b5e2de852c1f0b5cd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1636569897511669512.mlir",
      "new_id": "d78264f5e41c3c3c5207f4a0f5d0f4c760632ba8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1636569897511669512.mlir"
    },
    {
      "type": "modify",
      "old_id": "f07cd52f01c3c223fc0658df981d332285b6f861",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up3340198020277021599.mlir",
      "new_id": "789c59f00a2db25d78c20e5c6d186f4ce06af170",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up3340198020277021599.mlir"
    },
    {
      "type": "modify",
      "old_id": "41ae73cc82a18d292fdc7ea1e89397857b5cfad1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-8225746493159059601.mlir",
      "new_id": "a6e1ed56a9720db199e3330e8f8f9eea949dfbcf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap-8225746493159059601.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b1b019bfddb68539744be4079ce80a35daf1664",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap4011951321233696206.mlir",
      "new_id": "8797e767043a85bb6212830978701737caf88e7a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshap4011951321233696206.mlir"
    },
    {
      "type": "modify",
      "old_id": "b99d5932aa0ecf7b6144a4cb1d008afeaab215e7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-111981570719861577.mlir",
      "new_id": "32972c3f1593aed006be73ef8c412676511ce72e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow-111981570719861577.mlir"
    },
    {
      "type": "modify",
      "old_id": "8d95c543a62853fc6c5ca2694ba23b3ed83e5309",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow3372628312255323136.mlir",
      "new_id": "a3fa98161ef8da45fbb6f5b81e4a0acbc092a26c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindow3372628312255323136.mlir"
    },
    {
      "type": "modify",
      "old_id": "72a2588ce9f9be9a93ebc07366a49e3dc45da4db",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo3534973217554270585.mlir",
      "new_id": "23fbd028c86bc65848342578516189b3c7cafc6b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo3534973217554270585.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d679e233fd39e6b0fdcaf6963819d02439a126c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4155173732612390224.mlir",
      "new_id": "9debe5584d75cbb1049abc1fc374cb8c493b23f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindo4155173732612390224.mlir"
    },
    {
      "type": "modify",
      "old_id": "419416259dadf106b79f7188ff1a67741a835f22",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi2887914144604862218.mlir",
      "new_id": "690fee5149a65475b84519a29cac5892c4fb539f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi2887914144604862218.mlir"
    },
    {
      "type": "modify",
      "old_id": "850d417907e7a6f161dce45877337526ff5f1eb9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi4469707123732510219.mlir",
      "new_id": "56417ed813372898bb5589dff315b00e68c7e3fd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdi4469707123732510219.mlir"
    },
    {
      "type": "modify",
      "old_id": "bff65027dd0637e8a2bd79a4ea0771dfb6f1cd55",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-1464735832931959797.mlir",
      "new_id": "57719c565748a81fe59e93938bd91008e6c132af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-1464735832931959797.mlir"
    },
    {
      "type": "modify",
      "old_id": "910965491517249e1e5036986a542d68e594830c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo991080895202624293.mlir",
      "new_id": "47cbe24ab5e9fa1d8854c4e6c56adac65a9ac356",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindo991080895202624293.mlir"
    },
    {
      "type": "modify",
      "old_id": "d62f2919eef05f401023896d5477b38663faff4a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-5869849077510288141.mlir",
      "new_id": "59ae216710d91a261bda791e00ebba1080d6a4ef",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind-5869849077510288141.mlir"
    },
    {
      "type": "modify",
      "old_id": "f08b1c3f7f4d4da43296756a19a80b654aa45830",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind4714892237262590743.mlir",
      "new_id": "0ff31a2756f29e02311ff164f9b8c6c91bfe2e96",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewind4714892237262590743.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f8c30bdfd53c0da725b8137c7c679907f5fb733",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-2821247655828279221.mlir",
      "new_id": "1788c67bcc96066f69cc4e0dc94835a4e8d4aac9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-2821247655828279221.mlir"
    },
    {
      "type": "modify",
      "old_id": "42cc1d36bb56d400b59196f89e2590f15834fe03",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo5883765822750344543.mlir",
      "new_id": "47c0e15c16fe35696a0b4143b7be9bca22abdf52",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindo5883765822750344543.mlir"
    },
    {
      "type": "modify",
      "old_id": "456058e006f8644219d9d4cd111afd070aafdc89",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin3890704783693838053.mlir",
      "new_id": "a1310ca905cb0003f3d297c8823247e3a14d713c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin3890704783693838053.mlir"
    },
    {
      "type": "modify",
      "old_id": "77a7baae4e1fcf6bf02fd990c5d251462aebd7bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin5926764019743641747.mlir",
      "new_id": "ab39bf3aa4d61f0d697bc611b4cb2b1e5465324c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewin5926764019743641747.mlir"
    },
    {
      "type": "modify",
      "old_id": "5acba52f4a7848b295a1916370dc184ffa305d2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__1254005676560697655.mlir",
      "new_id": "83dc73f8f17ae9b5ddd8d6378835c074adb2223a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__1254005676560697655.mlir"
    },
    {
      "type": "modify",
      "old_id": "7e774d3015d213102d6c7e35c8bba678fc5fafe9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__2042027638374529727.mlir",
      "new_id": "6c44ee3ebeea9237c61012d0de6387e76de53e47",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims__2042027638374529727.mlir"
    },
    {
      "type": "modify",
      "old_id": "ed0cfd6104e777b0cf993ad56f8ac577a89acb4f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-3294582951459358199.mlir",
      "new_id": "c78e588aeda65997285ee916627f9a3568e0b771",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew-3294582951459358199.mlir"
    },
    {
      "type": "modify",
      "old_id": "8bedc1352e84b2984644e616de98a1c332341ff0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8954133149842640533.mlir",
      "new_id": "cba98fe2a057b550bfc062562c0ad3b794164519",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew8954133149842640533.mlir"
    },
    {
      "type": "modify",
      "old_id": "856f806e6a72e466647b9cf321e44481551075f0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-2950263105139370261.mlir",
      "new_id": "2c172b5ca1036d839c5349d53d88dfcb7b25910d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-2950263105139370261.mlir"
    },
    {
      "type": "modify",
      "old_id": "b6042affbe9b556b6e72555d75e931646fa169e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-4707753359265092675.mlir",
      "new_id": "fd9a09b6fc15d97eec2ce8021465344299e49ec8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewind-4707753359265092675.mlir"
    },
    {
      "type": "modify",
      "old_id": "7fa461e9c283da2d8857da1de4436af66ee02d1e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-5932100710693672352.mlir",
      "new_id": "232e0eaa3486210725e73c1762d238e53b5bc3eb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u-5932100710693672352.mlir"
    },
    {
      "type": "modify",
      "old_id": "b94e58391433a3c0e2d0d1df4751615d79368b51",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u533406235125782564.mlir",
      "new_id": "5e364ea87ae3c5cb2d3598800ac504e31252ef2d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u533406235125782564.mlir"
    },
    {
      "type": "modify",
      "old_id": "dc6e944b2bad2e55e21ccb7f302c9aae8560b787",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-345864373339151471.mlir",
      "new_id": "edf093d8bcb136b4c6c8c4314ddd661e5b114491",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-345864373339151471.mlir"
    },
    {
      "type": "modify",
      "old_id": "c7289c73ef9d820b655c98efd0280f27112ddd30",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd1553916274230136318.mlir",
      "new_id": "79712cc8d25c8fdc3884d48515b4e1d7152e5315",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd1553916274230136318.mlir"
    },
    {
      "type": "modify",
      "old_id": "1f86e55e7907c8a41cdca6136a9793277821babc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape4285133721288375655.mlir",
      "new_id": "d86e735a383f5f41ef104cac752b755af1a25eaf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape4285133721288375655.mlir"
    },
    {
      "type": "modify",
      "old_id": "d9bc75c51cbb389efd4f2e18df77a54996d7ff32",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape4507876843873845780.mlir",
      "new_id": "7974990860e684f276475e0f2eed297bdd5b39af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape4507876843873845780.mlir"
    },
    {
      "type": "modify",
      "old_id": "e7c019b73d2e8e6e07129116253272483a1df07b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-1667807402137901181.mlir",
      "new_id": "0bb80a6687b0a3d0713d3091c6b2c2e6972b91bd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind-1667807402137901181.mlir"
    },
    {
      "type": "modify",
      "old_id": "c374e99a3b5c3fc79474510b11945cdfcf4f9081",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind821217668492272078.mlir",
      "new_id": "50fc873aae7a0b7f96892a6a295d1b92b453fe45",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewind821217668492272078.mlir"
    },
    {
      "type": "modify",
      "old_id": "c22629b6e4dfde272bcb3f6d17c2226f12704761",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin3418850834955662541.mlir",
      "new_id": "b00f0c7a499ff6d3debb4ccdd13944287c1d809f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin3418850834955662541.mlir"
    },
    {
      "type": "modify",
      "old_id": "b184232b397f692784baebe99e4b6210180b5c57",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin4201243891161652134.mlir",
      "new_id": "8d869fd2154ca2586d896af0c5f2e7c82a40d1bc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewin4201243891161652134.mlir"
    },
    {
      "type": "modify",
      "old_id": "3743dc64a71b9950bfa960bb243a573d5e77b2fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow3680904523812281099.mlir",
      "new_id": "b81f2f697d9221261b1b8e5befb9cca86db46b0e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow3680904523812281099.mlir"
    },
    {
      "type": "modify",
      "old_id": "6c7cd0cde2b32566c93a4d031d94bb74bafbc388",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow4781847233955898769.mlir",
      "new_id": "d3d062f6a658fb3781c93f2b1db0be5b87bbdaf1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindow4781847233955898769.mlir"
    },
    {
      "type": "modify",
      "old_id": "c69d632d0329da28bda977f28a78fd1255782f10",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-322681613942851425.mlir",
      "new_id": "befa2510a2026919160846be0023650db9b2b4ed",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin-322681613942851425.mlir"
    },
    {
      "type": "modify",
      "old_id": "65c84daf58b26ad119060c98397503793de1fd49",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin2126778553061836798.mlir",
      "new_id": "419e230b0e1665e53c313eb8a1a380b8958f32f1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewin2126778553061836798.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7ca1567248e87dcb4fb1f34111a80981bd5a3c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-6766913623160416458.mlir",
      "new_id": "660bc8cf986a12e9092d3c7321f99fe2ac098968",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi-6766913623160416458.mlir"
    },
    {
      "type": "modify",
      "old_id": "d0926b49f277881a53777ad237a8cf0e77c04204",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi1162864048077847697.mlir",
      "new_id": "5f07a0b06a6a6f2c419784843a68b5d5d374777c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewi1162864048077847697.mlir"
    },
    {
      "type": "modify",
      "old_id": "e2097e6e89e5de88df5a2b5d43d2d2ee4fad6ae5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin-113788717369935348.mlir",
      "new_id": "57308f64649efa0fb8a669b16fbbd02880853313",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin-113788717369935348.mlir"
    },
    {
      "type": "modify",
      "old_id": "e3fcdfc6fe1f160026952d4344a55b3a7287f587",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin8975737341944237165.mlir",
      "new_id": "48c44d74c5404ea7805cbcaed31b7ed9e6fd5e7d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewin8975737341944237165.mlir"
    },
    {
      "type": "modify",
      "old_id": "7db622036f5308acf41f7011d4d2e42d65e79584",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-8407979194831241665.mlir",
      "new_id": "c705016b9640ce57b8b6c443725599dc42330e21",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew-8407979194831241665.mlir"
    },
    {
      "type": "modify",
      "old_id": "7599c079ad123e659af15a6dd196878c4ba0acd3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew1896497151505034933.mlir",
      "new_id": "eff0ed2fd9c60612395d652efa3c4afca04a4fce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatew1896497151505034933.mlir"
    },
    {
      "type": "modify",
      "old_id": "87ec7c1d7e8d5c6b2c35c59e29a1b9d4e468c7e3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-6732567000122109466.mlir",
      "new_id": "96e3813b8d5e13cc5d2afe9d876aa4b1d051eae9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims-6732567000122109466.mlir"
    },
    {
      "type": "modify",
      "old_id": "ae5ddc5bb85f080969f89de08cb3e2fe87140d92",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims8369315150788296177.mlir",
      "new_id": "68e9651433879c142eb1724b7a5898d8317176b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims8369315150788296177.mlir"
    },
    {
      "type": "modify",
      "old_id": "85edb02a38ef5d5622c2e2470abca74a4ac4581c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1872239608779336173.mlir",
      "new_id": "c554d1201996c676d8806e0ab1aff63c48a91d75",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat1872239608779336173.mlir"
    },
    {
      "type": "modify",
      "old_id": "0b1b80d07d479a95e559969dc19c7e8da9e6f696",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat7331007253302672627.mlir",
      "new_id": "e02f1734d0b71213c17cfa966575a76070eedc37",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat7331007253302672627.mlir"
    },
    {
      "type": "modify",
      "old_id": "49c407d6c4651d5b149eaa380ab9db57a35ceff7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-6289641638059328425.mlir",
      "new_id": "e5a3146f3543c17e85c28aefe518db7ac51e3598",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi-6289641638059328425.mlir"
    },
    {
      "type": "modify",
      "old_id": "91c0e0931d20f8e3ce3abc09b30a22fa42b26f3f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi6894674836177418052.mlir",
      "new_id": "aa5427056a2a3223e1296eb286d05fb2f79de5ea",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewi6894674836177418052.mlir"
    },
    {
      "type": "modify",
      "old_id": "f92d6fb32cdc84267be35a0d212881b2e714036a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4801225886434282536.mlir",
      "new_id": "90cc618fad47b0104a915b7eeb82d4aefec2f4e6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-4801225886434282536.mlir"
    },
    {
      "type": "modify",
      "old_id": "623697f94b87c78376369c207fa2d9dad21c02ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_3972516982325290392.mlir",
      "new_id": "f6ddf5857a018644b39bedc80acdeb1ab2383d55",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_3972516982325290392.mlir"
    },
    {
      "type": "modify",
      "old_id": "8ae14649f1f8b7402141c068fa97d141459b3b80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-377631690596425522.mlir",
      "new_id": "7f050fb03a19a119b932fef740c62ba039107970",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u-377631690596425522.mlir"
    },
    {
      "type": "modify",
      "old_id": "bdff7e6e0a3da6ebd223a50a37bedca839ce05dd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6860646687466945699.mlir",
      "new_id": "21849857b6ae1ad471ef194d059f97bcbb324ef1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6860646687466945699.mlir"
    },
    {
      "type": "modify",
      "old_id": "5f60d9df360c74c6d935e1d022c389a3ddb8ac67",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-4251669814050383889.mlir",
      "new_id": "7aa18429dc853dffd4a9b547643846ac52581f7e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-4251669814050383889.mlir"
    },
    {
      "type": "modify",
      "old_id": "b12a8bcbc2e8a20a8e0e5cba6069e2b7692d8f26",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-8858309163784542992.mlir",
      "new_id": "8cf1d71bb582e2b882527f0d61a4a9ceb451a2b5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updatesha-8858309163784542992.mlir"
    },
    {
      "type": "modify",
      "old_id": "a57a951accac6250668c8bb26f1ad7add1b67813",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-1704453188135452065.mlir",
      "new_id": "015382a17c7b45dfbb217604d32fd20414fd98ac",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind-1704453188135452065.mlir"
    },
    {
      "type": "modify",
      "old_id": "5c437337a9604646bf39c084bc2483316e02a30a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind3660954273200353020.mlir",
      "new_id": "186b2e9cd8a582cd251d70703f3efd1c7d4f0fe7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewind3660954273200353020.mlir"
    },
    {
      "type": "modify",
      "old_id": "77ec8937b612fc3905c50643dfb67912e56f6f32",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-4234295038244077699.mlir",
      "new_id": "540c6737ea29d7995d7891800479c2b876ffb223",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin-4234295038244077699.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ac66114c6f5bc9027e6ba17188c6e5bdc32ed19",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin7679086674395570535.mlir",
      "new_id": "129eaed08da6c13ac1404539bd7ebb17f21d9b54",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewin7679086674395570535.mlir"
    },
    {
      "type": "modify",
      "old_id": "831a8e0938bc9a44bc1c49dbffb9f6375b6b4898",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-110325613177501848.mlir",
      "new_id": "c6d5b00115dc26cd64165e5421002952a60dcdf3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow-110325613177501848.mlir"
    },
    {
      "type": "modify",
      "old_id": "9bb3c74524e72ca0bb547ab6349e36af21847a33",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow8551599803177390565.mlir",
      "new_id": "474839df54f6fcd2c7fc56ea1f482932241a2c4f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindow8551599803177390565.mlir"
    },
    {
      "type": "modify",
      "old_id": "433e9bd42817d58c97d384c323e0444061914bfd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-1859429760712290799.mlir",
      "new_id": "558764b0884c7d27f3ebf487c98649faecc6734c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin-1859429760712290799.mlir"
    },
    {
      "type": "modify",
      "old_id": "82b746fac7b4f29384b0a3d3f62737c5f27ec382",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin3387081657127263646.mlir",
      "new_id": "3c3d270bc2061095db6ce2783f1e3ab4536544ef",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewin3387081657127263646.mlir"
    },
    {
      "type": "modify",
      "old_id": "5d1ca168c034e20ab67cac5599cb176f2603607e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-2449112500337245365.mlir",
      "new_id": "0278a84832fa59d4659baa7a440a103d091d4a0e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi-2449112500337245365.mlir"
    },
    {
      "type": "modify",
      "old_id": "f6f46cca9f0f8842aeca98e30a355212bb36d0a3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi4744761297352104237.mlir",
      "new_id": "e808f117fa2fd8fc7129588bc40ca5cb11aabb66",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewi4744761297352104237.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a0c3566e3c70933cd15246e28450f26512a9278",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin1307550907639424494.mlir",
      "new_id": "6217719e14afcf332d49b24a49f67e1a9a520235",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin1307550907639424494.mlir"
    },
    {
      "type": "modify",
      "old_id": "022d9f5922526726161ecfbaac036c1d3510a382",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin6567349431661793525.mlir",
      "new_id": "3dd828a812a763ac72bc3d89ebd425c8c696a5c9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewin6567349431661793525.mlir"
    },
    {
      "type": "modify",
      "old_id": "d98d179a554dbac4664b8b7755de38128a5c2706",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-8119964461084363759.mlir",
      "new_id": "aebf385d8dd339b015dfa90d36590571d4532195",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew-8119964461084363759.mlir"
    },
    {
      "type": "modify",
      "old_id": "0c8a2988dee6731326c7846f7c614c22e1cc36f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew3673094684779122943.mlir",
      "new_id": "b99b3d44a6269052038e471191f628e6fa26bb0a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatew3673094684779122943.mlir"
    },
    {
      "type": "modify",
      "old_id": "74d36f36978fd5b00d4b37c8f74720801d6c3c79",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims1969687651635792397.mlir",
      "new_id": "6b690c96b11c802820cab88e346845f337f4f802",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims1969687651635792397.mlir"
    },
    {
      "type": "modify",
      "old_id": "ca15cdc7e6f622cf08ea7a8527bdaa5dd4611dde",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims2696056147646221299.mlir",
      "new_id": "57dc259c2f5580f8efa12a649077986ecce43957",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims2696056147646221299.mlir"
    },
    {
      "type": "modify",
      "old_id": "c6a0f412b62e50580b774a1b78fe06b71ea71b88",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-542804495611746280.mlir",
      "new_id": "394c6567647e46e281678dec2767badbba3b591b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat-542804495611746280.mlir"
    },
    {
      "type": "modify",
      "old_id": "8468eea3d6988c9e47f453abbb060d04cbab79da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat9217932344131399686.mlir",
      "new_id": "ef199f7e705d2fe8714908f40e789e129e778785",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updat9217932344131399686.mlir"
    },
    {
      "type": "modify",
      "old_id": "36fb03a6ebae88e1a9e9f292eb573daa58a07fe7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi-5713978486446818932.mlir",
      "new_id": "68c5e6775de89cabea75ece17b972071f0bac084",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi-5713978486446818932.mlir"
    },
    {
      "type": "modify",
      "old_id": "f4f2571dde5bd8ccfcfc3fd04ec0ce193404da4b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi5259753196347630593.mlir",
      "new_id": "3a8aa95b3857716169be38aabcae2d3315d7ae1e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewi5259753196347630593.mlir"
    },
    {
      "type": "modify",
      "old_id": "08aa2cb38401522618019c63ad9975b737ecc91a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-7053757109840106619.mlir",
      "new_id": "0c0706af6b89172f0b48357ea824dfa8a7c4b391",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_-7053757109840106619.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cd66cdb29c17f57f5bbd6093fc57be56f5401e9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_4871342495677478541.mlir",
      "new_id": "cf6721521707151788e92b67eeacb20883c9a74b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7_4871342495677478541.mlir"
    },
    {
      "type": "modify",
      "old_id": "176eab795d7ec2eaaebf633c89cb234ddf729759",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u2457362189692860874.mlir",
      "new_id": "fabd56a126b944d63ec14a8f5d4ed2b707a076db",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u2457362189692860874.mlir"
    },
    {
      "type": "modify",
      "old_id": "3cddbd64de425e57194a3e37b0d8a0453a01f222",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6188014052084615117.mlir",
      "new_id": "ef1e6d5a5cab7ef36ca292592f7aaa5e1e686d92",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____u6188014052084615117.mlir"
    },
    {
      "type": "modify",
      "old_id": "75edc59fef60aca7ba44320d9f321830708427ab",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha4248940963503671441.mlir",
      "new_id": "fb51eb0da70849c69dd5e90fb9203ab402a78ed4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha4248940963503671441.mlir"
    },
    {
      "type": "modify",
      "old_id": "475eed4407ebfce9f362c5cafe5cf3f022901b6c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha6868272512651083334.mlir",
      "new_id": "8f0ca9119ec258e2c557686c283a35db3121cc18",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updatesha6868272512651083334.mlir"
    },
    {
      "type": "modify",
      "old_id": "d645d2a1d93214c318ffa5540073d0ca488a36f3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-1910154477968116386.mlir",
      "new_id": "811ca75eee6d12f6baa8b7bb29136e85b5882dfd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo-1910154477968116386.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b86b90aca6a9f0dff67ee6fa55b549ea080fd0e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo8260422791672786393.mlir",
      "new_id": "fa60b28681a1ff3040fd6711f9c9d54dd2e5be38",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindo8260422791672786393.mlir"
    },
    {
      "type": "modify",
      "old_id": "e7154dddccccb5275d5106d47f5df96e66a0c685",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-5161385092992564727.mlir",
      "new_id": "f336843762f979f49b34453d12dfab070605e239",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind-5161385092992564727.mlir"
    },
    {
      "type": "modify",
      "old_id": "88ba3f044c542fcef9a721988632d781d02bb5b5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind7864482691090263849.mlir",
      "new_id": "b491b6121b3444af13a10fdc2c0df40eb9d47044",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewind7864482691090263849.mlir"
    },
    {
      "type": "modify",
      "old_id": "0114ee760027e3ee98bf4d1eaaf20054df607328",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-3673649132944055118.mlir",
      "new_id": "2e5ab9c6ec74b97ac0b0a1e97059f119b83b3d8c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd-3673649132944055118.mlir"
    },
    {
      "type": "modify",
      "old_id": "cb973df41848ad1c8fd685f0df3db09472c33903",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd7995333100578489040.mlir",
      "new_id": "f3278d53645924c19430225357d5e01aea86f28b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowd7995333100578489040.mlir"
    },
    {
      "type": "modify",
      "old_id": "1e2e0ec33e23495ca53ac449fece2efa1a384022",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3849831729354064929.mlir",
      "new_id": "c9c3e2537000a89e171f87385aaf39ad1b4831ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3849831729354064929.mlir"
    },
    {
      "type": "modify",
      "old_id": "27826b75d5fafef43561494ef06b20207cdebf1b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3919994019662167690.mlir",
      "new_id": "de0aff4bc34fdaaab9e072ae9a2309ac691097e0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewind-3919994019662167690.mlir"
    },
    {
      "type": "modify",
      "old_id": "402b1c26c638faf87a0dcc16a3b9e15bfca464f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-8230579987754338924.mlir",
      "new_id": "1586037bef62abb69e62d4b2ac279be2d7daca8a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin-8230579987754338924.mlir"
    },
    {
      "type": "modify",
      "old_id": "762c1d424dbaff04a0a3b5274962d8729d0dd3a3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin6410318316600411775.mlir",
      "new_id": "85dbd7445441925cdaeca7c65fb1e936659cf289",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewin6410318316600411775.mlir"
    },
    {
      "type": "modify",
      "old_id": "da23da847e79641cc4d1e653d0872b407c8cac23",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-18644883834479203.mlir",
      "new_id": "f2b688480238351da30ee25c8e8c1f4bfe6add2a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind-18644883834479203.mlir"
    },
    {
      "type": "modify",
      "old_id": "07fc961ab1b6cae6d54b339f4f65cacf890371da",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind1471471209202151261.mlir",
      "new_id": "6943d72fbcd14473dd38fcb3ce38505c0e93f771",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewind1471471209202151261.mlir"
    },
    {
      "type": "modify",
      "old_id": "4b1f412a84575ea5ed65f9f773cfbf9ff4df1ded",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-3494775986942929214.mlir",
      "new_id": "790f48a4fc6b95b52273d0ad2632cf7ee6932f95",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi-3494775986942929214.mlir"
    },
    {
      "type": "modify",
      "old_id": "2b8cacd138e8cd1656cb69ac2f8b0b944c247502",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi4960596588736335712.mlir",
      "new_id": "7f551846065191fab0f124d8cd032c9ee9f25d45",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewi4960596588736335712.mlir"
    },
    {
      "type": "modify",
      "old_id": "4343e345fd7663d833dce293ff8c52b118eb481c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_7030611960189158297.mlir",
      "new_id": "07fabac7ba883ac0e979ba8e0b71c7f4b35d6fe6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_7030611960189158297.mlir"
    },
    {
      "type": "modify",
      "old_id": "ec76914adddb57b4dba8eaa7803c1d9c9ca4830d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_987589972778068218.mlir",
      "new_id": "8f7c2ebd6cd449fa2dd3f53b28d444ab2bf5be06",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims_987589972778068218.mlir"
    },
    {
      "type": "modify",
      "old_id": "59c3cc689c6ef9e828892d6bfb78341fa8d13a11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-6688911708365296131.mlir",
      "new_id": "5874c8ad57b2dcf3db9be70c02b673d233ded12c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update-6688911708365296131.mlir"
    },
    {
      "type": "modify",
      "old_id": "098ccb190bb395d0ceaebf67ac0844a973edfb01",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update8221209685807053597.mlir",
      "new_id": "ec52f280a87eba41a1d624e29b3092958a9a8bf1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__update8221209685807053597.mlir"
    },
    {
      "type": "modify",
      "old_id": "177d120937d337c7d40d09eb38ab89e9c7a9989d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-1390584555678624339.mlir",
      "new_id": "020da13920a1453c835b3dc7628bbda145763fb2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-1390584555678624339.mlir"
    },
    {
      "type": "modify",
      "old_id": "8cfe5cdeac0814d5a1ca20a40b7bbea96a61da7d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4833110851173867022.mlir",
      "new_id": "4ac465995dabd40dbeed1b739cc539ae7b596a1e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewin-4833110851173867022.mlir"
    },
    {
      "type": "modify",
      "old_id": "66c44de4fac9c4dab3fa7f5744b09cf06ca471fe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3139063086521215457.mlir",
      "new_id": "924fdf15f25743ec19b38bacd2c928514f3d2c7f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-3139063086521215457.mlir"
    },
    {
      "type": "modify",
      "old_id": "0504e08aaeb30739f12c981c929d5f33572b9cc3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-4201352065835320077.mlir",
      "new_id": "c064482f4dfcff04ff82cb1a7affa8a06561ad67",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__-4201352065835320077.mlir"
    },
    {
      "type": "modify",
      "old_id": "a4d75b4862172087ad4c479a8f10c8e7e38d1f04",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1751444907009857893.mlir",
      "new_id": "e141f78e9514df4e6c9f47d833e6409d84fd7595",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up1751444907009857893.mlir"
    },
    {
      "type": "modify",
      "old_id": "2d9eb4981a423295049fefd3d12c21c338b76ca1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7676739352108892783.mlir",
      "new_id": "6a550863dc8d7cf0333a0eb0490a127b72b28fbd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____up7676739352108892783.mlir"
    },
    {
      "type": "modify",
      "old_id": "92d781bc0204fd63a94b382115789fb260257021",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-2761376882161010530.mlir",
      "new_id": "ebfdbba97b3f6b9495ea84e054decbc1e4e8981f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-2761376882161010530.mlir"
    },
    {
      "type": "modify",
      "old_id": "984400a49d6dc47c01bb3a49d4bf7a5b114be307",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-3709788139329733973.mlir",
      "new_id": "e95f12369541961d609482ff54a0a33fc47d1a28",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_mul_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshap-3709788139329733973.mlir"
    },
    {
      "type": "modify",
      "old_id": "c2a28482cda58065c1d4eb01698bd3b1511e3fa3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewindow1533954122127809733.mlir",
      "new_id": "13df1f68f519fa8e4fe4ef3a2e9334803f7b442a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewindow1533954122127809733.mlir"
    },
    {
      "type": "modify",
      "old_id": "ea73f3cc2b9ba44b59d70f20b66c72510324fb38",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewindow2212334345328524560.mlir",
      "new_id": "f5ee756b76d7aed3159883aa0d2a44b04ea222de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_125__scatterindices__0__updateshape__1___updatewindow2212334345328524560.mlir"
    },
    {
      "type": "modify",
      "old_id": "3f050b6c6eff91a7777a947f8fb47268ab162fbc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-5515472226926612209.mlir",
      "new_id": "de9b6d4d17a0643aa153346434cfe1c7b791b985",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-5515472226926612209.mlir"
    },
    {
      "type": "modify",
      "old_id": "287bfa62a5e7dfce74446d2e2ea72a91222a89d0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-5746832321951146741.mlir",
      "new_id": "6e41790c6b2fc3d3cb015e2da75af65427a93162",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1_1__scatterindices__0__updateshape__1_1__updatewindo-5746832321951146741.mlir"
    },
    {
      "type": "modify",
      "old_id": "0410379316805640ea8f2a36c7bd9c0a0a05ba2f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewindowdi-4275631455928422701.mlir",
      "new_id": "9aa4c6d2324814370f6c1416be333188c78cff5c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewindowdi-4275631455928422701.mlir"
    },
    {
      "type": "modify",
      "old_id": "18ad859881f93b04e4b518432f3262f5f295f7b2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewindowdi880223842074782525.mlir",
      "new_id": "cac096ce3f38b9610f0c358c5ce832e00efc32e1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_1__scatterindices__0__updateshape__1___updatewindowdi880223842074782525.mlir"
    },
    {
      "type": "modify",
      "old_id": "b67bf6728d897fac4f5e0bd906c20c6f3effe632",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-6921631478747710153.mlir",
      "new_id": "b0d7436083525083dbbcd14f381b1c93577ce78b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatewindo-6921631478747710153.mlir"
    },
    {
      "type": "modify",
      "old_id": "d548099da6c2eb2ff7f8dfd76299a532384dc9ac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatewindo7169358858965434835.mlir",
      "new_id": "96e32cd7e97cd2df8b0a6e90f1a6a948497b142c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__0__updateshape__2_3__updatewindo7169358858965434835.mlir"
    },
    {
      "type": "modify",
      "old_id": "c950ec7676dbafc919ebf6097ae9d466a6e84860",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___updatewind-8327222120113615417.mlir",
      "new_id": "10499d5b515efc7100fcccde683b4203ec4346e2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___updatewind-8327222120113615417.mlir"
    },
    {
      "type": "modify",
      "old_id": "4656af6646ef8903d734e90ce4fd21e81aa4d04f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___updatewind3214235195966616342.mlir",
      "new_id": "7a2ead8480eb747e4ec74ce4bb388d7749d190c6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1_2__updateshape__1___updatewind3214235195966616342.mlir"
    },
    {
      "type": "modify",
      "old_id": "c257f607299f4ef25873418e66ad0ddcb457b8d8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-748528918597234818.mlir",
      "new_id": "ad0176156453ad6df7983dc07388b639641b01b4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatewindo-748528918597234818.mlir"
    },
    {
      "type": "modify",
      "old_id": "86aa94d520968747ca2e077d2171b676ec460bec",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatewindo4827717327284223529.mlir",
      "new_id": "8bf9c7d7820bf74f391ef652f3850f5b077c04c2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_2_3__scatterindices__1__updateshape__1_3__updatewindo4827717327284223529.mlir"
    },
    {
      "type": "modify",
      "old_id": "801ee39136ea56d0a7954e0cf87f7cfed1e76670",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updatewin-811004303319833014.mlir",
      "new_id": "104d1d46b7eda5d544f49417695ae1ab53b1e801",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updatewin-811004303319833014.mlir"
    },
    {
      "type": "modify",
      "old_id": "cd907580b28a7cf58b219b494a79713989f1738b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8968797547817646506.mlir",
      "new_id": "42d89a26f279ce2b07e16d5420fa54a0e53b39d1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1_50_3__scatterindices__32__updateshape__1_3__updatewin-8968797547817646506.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3de2010aac7e1626251d943eb1c2ba7869794b9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdims__803457496356836485.mlir",
      "new_id": "46757be1987d8b09733c7227b6d80dcb5f3d0553",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdims__803457496356836485.mlir"
    },
    {
      "type": "modify",
      "old_id": "faecd903435073c92e54e7cae1c5ed6926055e45",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdims__8767377410188178831.mlir",
      "new_id": "1d117de76c708d63bf252e3348dfa450ad785d53",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_1__scatterindices__0__updateshape____updatewindowdims__8767377410188178831.mlir"
    },
    {
      "type": "modify",
      "old_id": "c587bf7588bfef895063b90e841c5664f36b2673",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew2557353525546824738.mlir",
      "new_id": "0bad6a4acdb5e91d2c737a1a98b17ea5ec03116d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew2557353525546824738.mlir"
    },
    {
      "type": "modify",
      "old_id": "e81819ccd8a441bd6510dc975caa7fc3a61ad634",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew4970676801450038327.mlir",
      "new_id": "601b871c84cfaaf5466f720b9625eea89382174e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatew4970676801450038327.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7d3deb47a5d32e04d01b55864e5baf0b65ace90",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___updatewind-4730266098010714399.mlir",
      "new_id": "81c8e60eaaf5fdf201af3794d6b87c9bfdf9adeb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___updatewind-4730266098010714399.mlir"
    },
    {
      "type": "modify",
      "old_id": "8685b471835e52e89e5ae5428ef2e985e5f1d996",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___updatewind4163324590869984089.mlir",
      "new_id": "39c67369907c7320b11f1a0b71ea09c21f71a6cc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_4_2_3__scatterindices__3_2__updateshape__2___updatewind4163324590869984089.mlir"
    },
    {
      "type": "modify",
      "old_id": "bc742577f700901d7749b717c035175b6856fc4e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u6903743958365226192.mlir",
      "new_id": "0ec5398e314210642603ec3baafaaa940f6c835a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u6903743958365226192.mlir"
    },
    {
      "type": "modify",
      "old_id": "544eb41c36e6e543285d4c1e5edaa4b57365f6c7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u851653131651182203.mlir",
      "new_id": "3ad5adc5087d8af5826819880e2fa7b7d724980e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__u851653131651182203.mlir"
    },
    {
      "type": "modify",
      "old_id": "fafa9437f991842c4c0e2413fba6bc4b339cc258",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-4211788900756011514.mlir",
      "new_id": "463580f4ba3ac81916067140436c3103e593d0e0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-4211788900756011514.mlir"
    },
    {
      "type": "modify",
      "old_id": "669d38ce3e882b3b538d13b80beb31515cf75897",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-567013946010987568.mlir",
      "new_id": "3144ee23de312c45f79736209b54e3017462b181",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upd-567013946010987568.mlir"
    },
    {
      "type": "modify",
      "old_id": "bff870f2d689299358e4b4e1b905a35f935365e2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updateshape-2470723896364236739.mlir",
      "new_id": "8b1fbe605fef25f768edba438085b20fa827bb5a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updateshape-2470723896364236739.mlir"
    },
    {
      "type": "modify",
      "old_id": "9862e741d50f296bce6904a7c41142cb54a1a5df",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updateshape-2777750282793909638.mlir",
      "new_id": "c9f28a2ea515ab9bb9ab73b3406749d2853d4c41",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_bfloat16_5_6_7__scatterindices____0___1_____2___3____updateshape-2777750282793909638.mlir"
    },
    {
      "type": "modify",
      "old_id": "1ddee5b322e78d27175e9e28858f559278cbbe1a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewindowd-7931172523670735374.mlir",
      "new_id": "aa9dd0b45225896d2284afc59cc3c685e30c07c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewindowd-7931172523670735374.mlir"
    },
    {
      "type": "modify",
      "old_id": "326c56f18e3910a4ef09187f696a1e6d782c150d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewindowd-7993092849982844884.mlir",
      "new_id": "2c05e975b8a61605190069650231f73833100b05",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_125__scatterindices__0__updateshape__1___updatewindowd-7993092849982844884.mlir"
    },
    {
      "type": "modify",
      "old_id": "de1d8c29def56663335927f6c455ed589af079bc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewindow-5898398544245547889.mlir",
      "new_id": "01d7d448f85cb4e2bcadc7578673bf826289e719",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewindow-5898398544245547889.mlir"
    },
    {
      "type": "modify",
      "old_id": "f63aa86979d31d5c9434ba59241f543783af01c5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewindow9167193204831340500.mlir",
      "new_id": "b4df880e7dac92e74d2e96135753d3470b38adb0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1_1__scatterindices__0__updateshape__1_1__updatewindow9167193204831340500.mlir"
    },
    {
      "type": "modify",
      "old_id": "98858a0e5048d464a57e55a39aa8173d7718884e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindowdim-6697600837644775619.mlir",
      "new_id": "487ac970425d5cd2478362df330d691702ba1c82",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindowdim-6697600837644775619.mlir"
    },
    {
      "type": "modify",
      "old_id": "bfb22872d11305868a0d661617f1a0362d4f3c7a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindowdim-8696271625363789640.mlir",
      "new_id": "865abbdb875449c447bb1e9f088f263bc1db318b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_1__scatterindices__0__updateshape__1___updatewindowdim-8696271625363789640.mlir"
    },
    {
      "type": "modify",
      "old_id": "7446f3ff967a88808f21a6d38047ef37f79857a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewindow-4892701647612422962.mlir",
      "new_id": "a3f06d0c2794b4f2f1364bf0c2b5f6945176c099",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewindow-4892701647612422962.mlir"
    },
    {
      "type": "modify",
      "old_id": "df6231aae2ef9a97edfb7d04d723c04a7a0b04b6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewindow2596278087494014499.mlir",
      "new_id": "ced71ab1fdfa95ebdf911ebe828c33ff31d82a0b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__0__updateshape__2_3__updatewindow2596278087494014499.mlir"
    },
    {
      "type": "modify",
      "old_id": "07df5ce79582aadfebd99e5f37d1b947e0f98d91",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatewindo-8075241794635431733.mlir",
      "new_id": "a0a91a26cecd7f20378ade87d9c0ad6ba6ca91e8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatewindo-8075241794635431733.mlir"
    },
    {
      "type": "modify",
      "old_id": "7353f130497d32bc921c2193b1c738f5820674b2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatewindo1273402148187748210.mlir",
      "new_id": "b0778df770c585be3619fcaf58e457d1617deea5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1_2__updateshape__1___updatewindo1273402148187748210.mlir"
    },
    {
      "type": "modify",
      "old_id": "ed674ba0375b7d6014b6da55865d5d3da177b9e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewindow2449512720322872831.mlir",
      "new_id": "695e339152fa14887a4549349b65b4619b07fa80",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewindow2449512720322872831.mlir"
    },
    {
      "type": "modify",
      "old_id": "2faa788e838476b29e00d990169f79468a7f2eea",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewindow5376840236682189212.mlir",
      "new_id": "f2de4edffa3c9ae4ff2daf0f34ae92ccf06c6ab0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_2_3__scatterindices__1__updateshape__1_3__updatewindow5376840236682189212.mlir"
    },
    {
      "type": "modify",
      "old_id": "ccdc589bafbad2c9d431461bccc0e6b959923f87",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__updatewind-4988232798612003322.mlir",
      "new_id": "a9528c4e5da605350cee6d4d5917adcd0f4efc3f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__updatewind-4988232798612003322.mlir"
    },
    {
      "type": "modify",
      "old_id": "46ab2c0349289a220456d368e0b3b3cef4ff206c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__updatewind-5971616284794195597.mlir",
      "new_id": "992ebf18a094b216814f83efb5ce6c50569416b3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1_50_3__scatterindices__32__updateshape__1_3__updatewind-5971616284794195597.mlir"
    },
    {
      "type": "modify",
      "old_id": "e81a7c08b0ce96f563946cd4271ac80ce43002e0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdims___-1581882056067495630.mlir",
      "new_id": "f79e730e51eb9acaa5f2ba72ab66c7e93337177f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdims___-1581882056067495630.mlir"
    },
    {
      "type": "modify",
      "old_id": "6fc17d211abb4f723f441b87a573d90170f78051",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdims___6931141976005902227.mlir",
      "new_id": "ef930f4ac3cdcca982717d22bb694b933dbefba0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_1__scatterindices__0__updateshape____updatewindowdims___6931141976005902227.mlir"
    },
    {
      "type": "modify",
      "old_id": "ad7ed27e03714bfe1abb44a29b1e4687e89f7d7f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi-4440686757305113217.mlir",
      "new_id": "ca3577ba38d4db86a35217b5edec929f06efaafa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi-4440686757305113217.mlir"
    },
    {
      "type": "modify",
      "old_id": "80bc96eefe7f7deb10ed2a4b49ff530cd721afbc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi6177149507061095935.mlir",
      "new_id": "65e7712a6dcc664b2e7b7c75973c0bf703b0468d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi6177149507061095935.mlir"
    },
    {
      "type": "modify",
      "old_id": "46d23b80e2480927bdc5ec5151cf0ed7589db10e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatewindo-6702992408726250105.mlir",
      "new_id": "ab8309177aba8107b133b856794942f0152c7d35",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatewindo-6702992408726250105.mlir"
    },
    {
      "type": "modify",
      "old_id": "77c5948d03d8ee2f42c177b749c5bab53740d098",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatewindo9003353866223854776.mlir",
      "new_id": "8bdfbe977fce50fd3e5ca70fe255a0b3dd19a67a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_4_2_3__scatterindices__3_2__updateshape__2___updatewindo9003353866223854776.mlir"
    },
    {
      "type": "modify",
      "old_id": "2a2c6d3f688673e1a320f50db352ef60c053c2b9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up-3915391758544634424.mlir",
      "new_id": "1e89683878b7e7f3ebe5a62c93a131591bdb41ce",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up-3915391758544634424.mlir"
    },
    {
      "type": "modify",
      "old_id": "19380008bf016568e7ba82deb026c0b3fc64a6ee",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up5091440795627112933.mlir",
      "new_id": "a7c7af16f6f3c7460666cdd0c77a04930333915d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up5091440795627112933.mlir"
    },
    {
      "type": "modify",
      "old_id": "26ea3b4976779acd461fe2665ef4f105b7757642",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda-3895422969289538715.mlir",
      "new_id": "a515cbb11fd16f989f0dae6ad68b4495d0e206ff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda-3895422969289538715.mlir"
    },
    {
      "type": "modify",
      "old_id": "bbcfdffe7bfcf5d77fd7fa1823e08daf8416bd1c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda-8607484419178884934.mlir",
      "new_id": "a84e32b21ddf5c8ce460c14c816307c73513023c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda-8607484419178884934.mlir"
    },
    {
      "type": "modify",
      "old_id": "9a8c74c0a687734c566307af6dccadd00895d21c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updateshape_-3264758681388995130.mlir",
      "new_id": "8c70e4c63e4dffb944c6de65f3ddb846a079e5a6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updateshape_-3264758681388995130.mlir"
    },
    {
      "type": "modify",
      "old_id": "aa9c46e7903b0671a14509e94b2b78e26c4ad899",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updateshape_-4145200395049429998.mlir",
      "new_id": "e4ea06aad0f335f676e728176b9939d5f2af2677",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float16_5_6_7__scatterindices____0___1_____2___3____updateshape_-4145200395049429998.mlir"
    },
    {
      "type": "modify",
      "old_id": "daf7a3f990f67a75d8b143fce20a14250344d009",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewindowd-5032394219303006330.mlir",
      "new_id": "be9ddc76346893aaa1743cdc8f6dba4997e4b8d2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewindowd-5032394219303006330.mlir"
    },
    {
      "type": "modify",
      "old_id": "c25b6629ee304d4fbf52f5855ead8ad720627606",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewindowd-6124250000237564558.mlir",
      "new_id": "eda943bbe846ca048e1bc01ea574a288a1568c1d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_125__scatterindices__0__updateshape__1___updatewindowd-6124250000237564558.mlir"
    },
    {
      "type": "modify",
      "old_id": "5bae16b383da070eae2963ffb023804f95343834",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewindow-1166308964052795389.mlir",
      "new_id": "49655e3ccb685f615a975e36b5d7fd1e6be404d5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewindow-1166308964052795389.mlir"
    },
    {
      "type": "modify",
      "old_id": "f9ffb1a45fd70dc22c3c5f527c02e70fc8101aa7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewindow6146376150855278773.mlir",
      "new_id": "2de60730b358b87f13d7123bbc0beb131151ee11",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1_1__scatterindices__0__updateshape__1_1__updatewindow6146376150855278773.mlir"
    },
    {
      "type": "modify",
      "old_id": "5cef0887cbb392d7f3628c15e126dc3cdc1ea6e6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindowdim-5224563014099850559.mlir",
      "new_id": "aa99377cec9137302b3263322b68ddb1f8706c03",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindowdim-5224563014099850559.mlir"
    },
    {
      "type": "modify",
      "old_id": "23f187a631c74bca54adce545b622a625ef6dbc2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindowdim5902876704179291364.mlir",
      "new_id": "f70c46ba1c4577e8206e4f1214dd04191584d8e1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_1__scatterindices__0__updateshape__1___updatewindowdim5902876704179291364.mlir"
    },
    {
      "type": "modify",
      "old_id": "9e9556fa3d70b5ed9175785fb2c3f17ab3bc253c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewindow-1359298270164992119.mlir",
      "new_id": "fead99e53dfc93a4db1be832f08bf50d3fa8f657",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewindow-1359298270164992119.mlir"
    },
    {
      "type": "modify",
      "old_id": "9e249629ffdc39970fbd92272538c30eca0595f9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewindow4638245368204258251.mlir",
      "new_id": "3c39541d54c65a6b1de069a0487cdc5c1d84ef33",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__0__updateshape__2_3__updatewindow4638245368204258251.mlir"
    },
    {
      "type": "modify",
      "old_id": "17b95d3cb98545e1fb5f44b62df2d2e24576d8c4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatewindo-6952903215068308375.mlir",
      "new_id": "79acd29a0c1d20002779f2dd40fd9d03bb0c5875",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatewindo-6952903215068308375.mlir"
    },
    {
      "type": "modify",
      "old_id": "a1493f9bf641092e58a1be17be533fa95804ded7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatewindo8098655806184711956.mlir",
      "new_id": "ab1481abd2f736e5415b3de03721dae62610277a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1_2__updateshape__1___updatewindo8098655806184711956.mlir"
    },
    {
      "type": "modify",
      "old_id": "39e5985fbebae517516f56c3484ad39937367e34",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewindow-3166175301749478603.mlir",
      "new_id": "ae49fef42d07aec6ea4dbc6f81f833e227e99100",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewindow-3166175301749478603.mlir"
    },
    {
      "type": "modify",
      "old_id": "0a237f5edddc954c256c00e005ed2454a638b0a4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewindow-8091553558886532801.mlir",
      "new_id": "cb2749837c97f2b9d74efdef8aea1e30813320c0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_2_3__scatterindices__1__updateshape__1_3__updatewindow-8091553558886532801.mlir"
    },
    {
      "type": "modify",
      "old_id": "c75ac34607ce3860a13cdccabac787ea2a90331f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__updatewind-4592039499336222183.mlir",
      "new_id": "e93f859e2520a9de74749091a12c4c9bf86109b9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__updatewind-4592039499336222183.mlir"
    },
    {
      "type": "modify",
      "old_id": "ee4eb67b7a5ba5b0a80fa155e8f50f4fef7b6cff",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__updatewind551072783988540586.mlir",
      "new_id": "b8f97447c93242076810f9a89f5e45b6b8175e4d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1_50_3__scatterindices__32__updateshape__1_3__updatewind551072783988540586.mlir"
    },
    {
      "type": "modify",
      "old_id": "157b612ea516497e94a127d5d7406f0c1d0a68a2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdims___-6627904546511788292.mlir",
      "new_id": "6602fc572e3b5a441f66f7716dcf489d119a77f2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdims___-6627904546511788292.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a59cfb5cfbecc7c542922f5ceba4ab0be113061",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdims___-7236496705769878027.mlir",
      "new_id": "1d7a59b3d813a01959d566139905e80dd258ab6a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_1__scatterindices__0__updateshape____updatewindowdims___-7236496705769878027.mlir"
    },
    {
      "type": "modify",
      "old_id": "c31c388ce65cdc785903937be781125e228284c6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi-1035527451504575367.mlir",
      "new_id": "08793821998b509c4b5e126759c586aac325e805",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi-1035527451504575367.mlir"
    },
    {
      "type": "modify",
      "old_id": "f3506946aef41a428bd8d7b294276dbd2f5e8a04",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi8957927086497228610.mlir",
      "new_id": "3ed0a3d73fec76f8eb2c9f518c88f2e234fce675",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewi8957927086497228610.mlir"
    },
    {
      "type": "modify",
      "old_id": "ec6e1c4dc5c7627f98919ac0e22c272a521bcd11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatewindo-6250034927652667738.mlir",
      "new_id": "1addfce3f9cec3050963175cf6d71d6cae6d2cef",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatewindo-6250034927652667738.mlir"
    },
    {
      "type": "modify",
      "old_id": "ddaa2f60e5c2ae76ab6a5952a7f925a31ee978e9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatewindo3872250257123715336.mlir",
      "new_id": "8062d116ce92f95d8e0d146cabe54e7f56a5d952",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_4_2_3__scatterindices__3_2__updateshape__2___updatewindo3872250257123715336.mlir"
    },
    {
      "type": "modify",
      "old_id": "9d4c909b76cc4f505355b548dbfbaa7a20b1b435",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up-769885505866663214.mlir",
      "new_id": "3d13ef54e5b39d84e32840ccc8907fee60a2ccbf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up-769885505866663214.mlir"
    },
    {
      "type": "modify",
      "old_id": "bfc319e35adc07a40bd935fec3d2a586e40d127c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up8042376641814452391.mlir",
      "new_id": "8618f5465964afc51083190c9c3f82b4dbe781dd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__up8042376641814452391.mlir"
    },
    {
      "type": "modify",
      "old_id": "b969b71d76c3255bc0fd005970823f861f6fd75f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda2948120356280440177.mlir",
      "new_id": "55e8e19675d25cf84dc45eead7ffa0f55c112b29",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda2948120356280440177.mlir"
    },
    {
      "type": "modify",
      "old_id": "a13d034437007eaf0aa596ae6a2e307776f0ff4c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda5974274183341077107.mlir",
      "new_id": "f594834e697ae46a906f3de3e4222975a56f29de",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____upda5974274183341077107.mlir"
    },
    {
      "type": "modify",
      "old_id": "3ecf50e6dc155fb0bc199e4685956b5337baed5a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updateshape_-5296991456639355529.mlir",
      "new_id": "7d367a1d50ea02f8ab8e7f9a24df42e38e6eee2c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updateshape_-5296991456639355529.mlir"
    },
    {
      "type": "modify",
      "old_id": "a7d77ed4cd8f3ac19c93e5248e2a68589a3716a6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updateshape_4632684866950503328.mlir",
      "new_id": "dfad68bf17a08d4efdbfc6ed478db6e42bc9a0cf",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_float32_5_6_7__scatterindices____0___1_____2___3____updateshape_4632684866950503328.mlir"
    },
    {
      "type": "modify",
      "old_id": "7c69cac83b9a9a87c19a79e58ac0da9a76b7142e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindowdim-8698108769819920525.mlir",
      "new_id": "9319ff16edd553553fa3c47805c4770da026ed49",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindowdim-8698108769819920525.mlir"
    },
    {
      "type": "modify",
      "old_id": "3e113ce0d80f12d50ae607559106d0206f4a92b0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindowdim8087846058922533087.mlir",
      "new_id": "0e138d59a8d40e4c83ad49fbf3de26151fd2ff0f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_125__scatterindices__0__updateshape__1___updatewindowdim8087846058922533087.mlir"
    },
    {
      "type": "modify",
      "old_id": "b743bc8e939c37e0f10eb85d2a394e8d88bc8df1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi1276220733139075642.mlir",
      "new_id": "753c4af7ed621bb6dc806338e403ab5c274f95f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi1276220733139075642.mlir"
    },
    {
      "type": "modify",
      "old_id": "7215f903633cb3dce40d22f9791ee6431e4d64ba",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi4078443036999630362.mlir",
      "new_id": "21b914c0aceb2fb2796a5e283aa0c7f816253fa4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi4078443036999630362.mlir"
    },
    {
      "type": "modify",
      "old_id": "80066b88be5e999a9aa8a10f5fe24176f8441313",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowdims_-3629977247342632200.mlir",
      "new_id": "d5b2f4b7e33b122626d922eaa8898ee64e262379",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowdims_-3629977247342632200.mlir"
    },
    {
      "type": "modify",
      "old_id": "8e4a7f187223bbe76c709690109c2536e00d6959",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowdims_-4115071638028730798.mlir",
      "new_id": "6bd0818c494ebf982b68a4ff7a5c905c09f12006",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_1__scatterindices__0__updateshape__1___updatewindowdims_-4115071638028730798.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f6103adbf7ab32ae633a1295fed67ed1ad3bb11",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-3883231357575282014.mlir",
      "new_id": "c38de7be228ece788619bef9c82fbc94b40bc942",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-3883231357575282014.mlir"
    },
    {
      "type": "modify",
      "old_id": "48db21f971bcb9a79c36e4684cba114fe3bbedde",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi1978913595889693225.mlir",
      "new_id": "e044132d5ec1cf80c84112b17e64e819fde117d0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi1978913595889693225.mlir"
    },
    {
      "type": "modify",
      "old_id": "89e9e3932c74dee47f6a98aa9f00d0321985e5c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-3566369876500629401.mlir",
      "new_id": "f49a37fd94c66e3da985a2ff40f75054c7806699",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-3566369876500629401.mlir"
    },
    {
      "type": "modify",
      "old_id": "2e7845d32ae84d979798dcae1c4cbf4c8dabc36e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd4618097380212176823.mlir",
      "new_id": "c1e4e4cee5a4c9fed008e09a54fe4931b2299efc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd4618097380212176823.mlir"
    },
    {
      "type": "modify",
      "old_id": "f16b0dddaf98a5d3a0228f78a1d777336131e72c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi2436397930943635512.mlir",
      "new_id": "d138d68b175139368557d80cb8fce27b7caf32f4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi2436397930943635512.mlir"
    },
    {
      "type": "modify",
      "old_id": "e80cbf9d5f7a30a27804d5260837fabe2fa595fa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi8827461135262261632.mlir",
      "new_id": "ebb7bcec8de9b903b084d3415db118d154c07fd3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi8827461135262261632.mlir"
    },
    {
      "type": "modify",
      "old_id": "d23c69a77b6695a7c766d84f98f98cac8e4dd6b1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-4109071485922139713.mlir",
      "new_id": "9c6e503b2488199b214ed6ce2ba1ed6599572e98",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-4109071485922139713.mlir"
    },
    {
      "type": "modify",
      "old_id": "1b8225659e11be5e1bdfb21e91c7bd90fbce378a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewindow960323707474477742.mlir",
      "new_id": "9740dab92061dfa0c0f45ade14761db868a41dea",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1_50_3__scatterindices__32__updateshape__1_3__updatewindow960323707474477742.mlir"
    },
    {
      "type": "modify",
      "old_id": "4da96f5e89b4425dec9f346ef90e99d3c2bbc122",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims____i2590786440408111957.mlir",
      "new_id": "92249c78f76b6431f1321e3d3fe9ca9c61559eb0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims____i2590786440408111957.mlir"
    },
    {
      "type": "modify",
      "old_id": "30dd2a3b0bfce97c1317ab8f5c2f554708650793",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims____i3309142488687098958.mlir",
      "new_id": "6809ea983bab7ff5752b59e9876a4238448b5454",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_1__scatterindices__0__updateshape____updatewindowdims____i3309142488687098958.mlir"
    },
    {
      "type": "modify",
      "old_id": "cae7ea67c2589c376f2fca9907657cdcd72c88e9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-2387065130740248241.mlir",
      "new_id": "b859347fdf06059e9454a647c122d2b340ad70c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-2387065130740248241.mlir"
    },
    {
      "type": "modify",
      "old_id": "0ba418b9f9f53690eb2ba45856deb06b72a6aab3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-6857143018353430914.mlir",
      "new_id": "4181cbde714a8fd1249522402886ce6d2abfe485",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-6857143018353430914.mlir"
    },
    {
      "type": "modify",
      "old_id": "5b5d9a145ff51064e9d3dda113e78bfc4a7febbb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-9078145034046701277.mlir",
      "new_id": "928edae7a08ca2d32739ed34bdc387d0d076038e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-9078145034046701277.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a7be2aa184fefe0a7c35acff153f298e13b3d34",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd7657914062383838323.mlir",
      "new_id": "c0e5f2621bbbf5e1d1c93f4a465917a955942d45",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd7657914062383838323.mlir"
    },
    {
      "type": "modify",
      "old_id": "23127f861f33f257b1d764a8fdcd153738dc2b6d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda-5685031293975477435.mlir",
      "new_id": "99ce81111548d6c4bfc94488eb72fe1c81230994",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda-5685031293975477435.mlir"
    },
    {
      "type": "modify",
      "old_id": "f4b14be68241e20462fb7543ed1fdee17c03b3f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda8137745118639757527.mlir",
      "new_id": "135be7ce452c70f9633bca2dd274628ecf0bcff0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda8137745118639757527.mlir"
    },
    {
      "type": "modify",
      "old_id": "cd86c15656b8143da15202295a13aa8508042ff9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-4929832496997222980.mlir",
      "new_id": "673f9f963358e0464258311b99950331a4080202",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-4929832496997222980.mlir"
    },
    {
      "type": "modify",
      "old_id": "ab4638182392cafdc3c0da1767b056f36b762a04",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-8287342731327426887.mlir",
      "new_id": "114b639a97ca1c22473401cc7c83bbac592bd9a1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-8287342731327426887.mlir"
    },
    {
      "type": "modify",
      "old_id": "d216e7b240ec821977d500ca4ac40264fe11bd51",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshape__5-3903744609433253284.mlir",
      "new_id": "0507b2424a7e1c41b9203f48b7db95df33a51a84",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshape__5-3903744609433253284.mlir"
    },
    {
      "type": "modify",
      "old_id": "79751e3813045b1615ddc6fce4fd8f57aaf0d4cc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshape__5-6179391706430955564.mlir",
      "new_id": "df23cee43ad669f75f3e54f2e68e7427746d8f01",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int16_5_6_7__scatterindices____0___1_____2___3____updateshape__5-6179391706430955564.mlir"
    },
    {
      "type": "modify",
      "old_id": "29ba6f153fabeee591624e3868dc7c5ba753a95e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindowdim-8041961560498277574.mlir",
      "new_id": "e90b11a72705b8b4a48ed4eb19a335cd3d2b3f06",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindowdim-8041961560498277574.mlir"
    },
    {
      "type": "modify",
      "old_id": "bd5e5ebb758ec20daf75605bbb86a20236ede2bb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindowdim1732450095990130954.mlir",
      "new_id": "c84ce0fa27e0515a1a784b873a153d301526bacd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_125__scatterindices__0__updateshape__1___updatewindowdim1732450095990130954.mlir"
    },
    {
      "type": "modify",
      "old_id": "510c19f087bd64a5f650e61e5b2089de73c1665a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi7713226170430967235.mlir",
      "new_id": "dedd25cdacc72a421af445cb65ba280e981b95a5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi7713226170430967235.mlir"
    },
    {
      "type": "modify",
      "old_id": "1d5de704c2f3f9bef6a483593937e8cb784469fe",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi8543119104200808925.mlir",
      "new_id": "9f620fef9c9e70d45145ead4864a7b77b6a61a20",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi8543119104200808925.mlir"
    },
    {
      "type": "modify",
      "old_id": "1113b3e8ad275bb77660c3a7b4f46a715b47b831",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowdims_3272632314613488541.mlir",
      "new_id": "0e1c240ecbebf9cdc12f06b9f8e0d4b3297e7e9f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowdims_3272632314613488541.mlir"
    },
    {
      "type": "modify",
      "old_id": "a199af68710f4e2b45d5d8ca4fba7d0098cb3e0c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowdims_5182742344668572861.mlir",
      "new_id": "4980250bea7a0c03fe6a14d784f33c4cc72000ea",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_1__scatterindices__0__updateshape__1___updatewindowdims_5182742344668572861.mlir"
    },
    {
      "type": "modify",
      "old_id": "b43deacce9295d7b0b87dd64da6b2539aeaf5c2c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-2517998333183107903.mlir",
      "new_id": "35cf3596502614a812807537a19fe6ec43df622f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-2517998333183107903.mlir"
    },
    {
      "type": "modify",
      "old_id": "bdad1ecd2eeb51f72256e2d8fc49084d1e0e0ae4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi8478884336016351970.mlir",
      "new_id": "1d65f27d81adf6cfd7f3776c6fcd45d6fba11759",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi8478884336016351970.mlir"
    },
    {
      "type": "modify",
      "old_id": "33155012c3fb43bc01629b910df92f9fd732d962",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd66591961499526895.mlir",
      "new_id": "0c2592e6b7b808a0e72014e39e63b29e649b167b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd66591961499526895.mlir"
    },
    {
      "type": "modify",
      "old_id": "66bdbac108540a88b67a174e050897d9127e0553",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd8972423980274079564.mlir",
      "new_id": "c9d4b1fb62e59636be3489691d7079856f4fc00e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd8972423980274079564.mlir"
    },
    {
      "type": "modify",
      "old_id": "5e40888ee522a4f8951bbcd8be990a727fe3d38c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-4913757608281705160.mlir",
      "new_id": "4db958e37fea57a38eb6b9b698405d55338a587d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-4913757608281705160.mlir"
    },
    {
      "type": "modify",
      "old_id": "913f82763dda71c62bdd615364d04fc9ee476775",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-6020693450791392005.mlir",
      "new_id": "fe6cdcc38bd2ae66f69b53ad6d7100080e5d1aeb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-6020693450791392005.mlir"
    },
    {
      "type": "modify",
      "old_id": "0211defbabc94b6040470aab26d783a1aecdf0ba",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-3607337236459034612.mlir",
      "new_id": "1a589b9020a9dc1e10bacdeddab60539fe440715",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-3607337236459034612.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f1973fba5aeb3555ae734e60b9f1b3edc12735a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewindow8217929817648577925.mlir",
      "new_id": "40a17143ae24ebbb873b528175632af48d2c0a0e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1_50_3__scatterindices__32__updateshape__1_3__updatewindow8217929817648577925.mlir"
    },
    {
      "type": "modify",
      "old_id": "236cac50a822861c4666d2033057b310f1ba890d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims____i-5238184922794335713.mlir",
      "new_id": "3d31bde338e061846aaee238e5cae3e61910dc65",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims____i-5238184922794335713.mlir"
    },
    {
      "type": "modify",
      "old_id": "ec0963da893d39102aff26b6140c16abceb03414",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims____i-8501313456125247071.mlir",
      "new_id": "1e6b7bc183cfe99c9fb9bdd313b7564818e44b63",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_1__scatterindices__0__updateshape____updatewindowdims____i-8501313456125247071.mlir"
    },
    {
      "type": "modify",
      "old_id": "53ca496f66b12c8da3e22073757b1aedfa01935a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind2339814497718031510.mlir",
      "new_id": "1d3d0b064eec06c62d4fa74371b03df022bcb140",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind2339814497718031510.mlir"
    },
    {
      "type": "modify",
      "old_id": "b13825dca2878fd517570ef0d0dce54bcb0d8191",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind6454648953224456034.mlir",
      "new_id": "36a3b1d1a9229c1c1afd9d54a5a27cc575b85246",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind6454648953224456034.mlir"
    },
    {
      "type": "modify",
      "old_id": "0309b2990da71ede29283ffa75143f3e71c00873",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-8777987494929121958.mlir",
      "new_id": "8688da353286ea9789155fa0b56928d481085ec7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-8777987494929121958.mlir"
    },
    {
      "type": "modify",
      "old_id": "07f2ca9b73a49a9973efb79476eab53915ced10f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd757110069171395288.mlir",
      "new_id": "6d5429055ac77220ff8099fdd2734de059bca7d3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd757110069171395288.mlir"
    },
    {
      "type": "modify",
      "old_id": "0050493318c415f0563ca1b792d84e79c8225121",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda3661825465707905512.mlir",
      "new_id": "4cb602e31780f1ee6b61d6d2d5ac55087709d32b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda3661825465707905512.mlir"
    },
    {
      "type": "modify",
      "old_id": "5d72db44dde434b3eb01bb5584cc2d6b61840116",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda4401317640487384848.mlir",
      "new_id": "09d37265d4f26b4a8023f70ddaccaa54c352a80d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda4401317640487384848.mlir"
    },
    {
      "type": "modify",
      "old_id": "22b3775efe17ea8fdf07cc7bea2bb2ec9b557ed4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-2801117496105208640.mlir",
      "new_id": "08b9a4fcb92da4394b4bb011a0127b6ce7a4ef9a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-2801117496105208640.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f4d5957fd6dffdb48a1de44063af47c3ce5a1c9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update3039220554070550341.mlir",
      "new_id": "4c83e08e3d2cbf011a1d598b278c34a35a90a670",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update3039220554070550341.mlir"
    },
    {
      "type": "modify",
      "old_id": "83bf7962fc21d0221f57257baa50d9976d8aad13",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshape__54475812850829447254.mlir",
      "new_id": "58f65db9f4186eb3555e520769a467afc230e1d0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshape__54475812850829447254.mlir"
    },
    {
      "type": "modify",
      "old_id": "d10662681e302b96389a835a21152f7f8c4c75a8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshape__57345062635922761033.mlir",
      "new_id": "b54d5d4517a0b06deb800cfeca02881607c11a95",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int32_5_6_7__scatterindices____0___1_____2___3____updateshape__57345062635922761033.mlir"
    },
    {
      "type": "modify",
      "old_id": "f864b5c5a410d9e3e03d4bcda5cb107f363b48f8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindowdims-128018089031167.mlir",
      "new_id": "82738994c7f591c04b537ccb4302886ffa2ca15f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindowdims-128018089031167.mlir"
    },
    {
      "type": "modify",
      "old_id": "b40247e29f63600d81d1ca56e4b2935aae80a7d9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindowdims1150961019743390834.mlir",
      "new_id": "7c30fbf74d7fb1e6818d14eb59c50f50d44fb61f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_125__scatterindices__0__updateshape__1___updatewindowdims1150961019743390834.mlir"
    },
    {
      "type": "modify",
      "old_id": "cffbe84e28b091e97fdbea8c1d8baa02464e6de7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdim-3128990905478656943.mlir",
      "new_id": "9d05a55c3f623450edab3edda5f8fce848b0b0b0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdim-3128990905478656943.mlir"
    },
    {
      "type": "modify",
      "old_id": "d8080b6672d71b79f11f2b79df4f7de827a6838a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdim-5697043038146688684.mlir",
      "new_id": "c19d023823aa8d1f7c652246907411395fcb8752",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdim-5697043038146688684.mlir"
    },
    {
      "type": "modify",
      "old_id": "6b50c2a6529db1974d2bf5a4a8169c5f93e48590",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdims__-1957699880279094704.mlir",
      "new_id": "7b1568c4da7cefadd81be938b224e5792146cc28",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdims__-1957699880279094704.mlir"
    },
    {
      "type": "modify",
      "old_id": "8c523d6e4c787b263914b62e67dbbad71acda86a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdims__4463659161859160997.mlir",
      "new_id": "b99b1afdabfd34273e2dbe1ed6df189046742d78",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_1__scatterindices__0__updateshape__1___updatewindowdims__4463659161859160997.mlir"
    },
    {
      "type": "modify",
      "old_id": "591b9e1c881bed7d6a723d7e3ae9ca8f9a33109c",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdim-7930785710990024243.mlir",
      "new_id": "74fd2a45660a25f37f05834979c9e8c2ff3d05c8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdim-7930785710990024243.mlir"
    },
    {
      "type": "modify",
      "old_id": "9bfa83c44a2cc200008b0d6dd02c8d3881cdd9ca",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdim-8041675212181463870.mlir",
      "new_id": "7c93c72f32448d6e5d0c37b250c5704e17e28414",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdim-8041675212181463870.mlir"
    },
    {
      "type": "modify",
      "old_id": "df0f472c392fbd3b4ffac68f1224f43048a86ce5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowdi-5778987303411786884.mlir",
      "new_id": "de862ec58035c7f4c73083ccb0a0ced374ef47f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowdi-5778987303411786884.mlir"
    },
    {
      "type": "modify",
      "old_id": "1057b7484ff63992d170886f5b4cdfb4320cb02f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowdi8444350783812761590.mlir",
      "new_id": "90114f21f78141a8ee99de390cc5e3c9ff6aedfd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowdi8444350783812761590.mlir"
    },
    {
      "type": "modify",
      "old_id": "cc8b5bf5ef1869f3c9534f28f54d892914b9193f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdim-3408679425006372114.mlir",
      "new_id": "be1f7b38c74ea0156bf9fbcb3deffd52022460a7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdim-3408679425006372114.mlir"
    },
    {
      "type": "modify",
      "old_id": "a4e6c3c07efbc14a9d231a50ed0c47dd00864daa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdim-364356374783506979.mlir",
      "new_id": "b53bae86b3e93caf2551e399d423026afa7125d2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdim-364356374783506979.mlir"
    },
    {
      "type": "modify",
      "old_id": "66e1737a412659c8511e4235660125aa3457054d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewindowd-356627360969227147.mlir",
      "new_id": "2c99ed7feafc65c9416a70878dea452aaefe9898",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewindowd-356627360969227147.mlir"
    },
    {
      "type": "modify",
      "old_id": "dd4a136078c31cff46a4e9808a5cd4783cae7adc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewindowd-8666680446554792979.mlir",
      "new_id": "12e4f61ccdde36f4da38c8eb56265f6c0fc6ae30",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1_50_3__scatterindices__32__updateshape__1_3__updatewindowd-8666680446554792979.mlir"
    },
    {
      "type": "modify",
      "old_id": "466c5bb21bde616f6dfc233b8e4c59c2d39386a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims____in-5906452100205584348.mlir",
      "new_id": "473a0f9d6121d3bbff0577562d0903637eee2f20",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims____in-5906452100205584348.mlir"
    },
    {
      "type": "modify",
      "old_id": "88f68a5c3b69c164760fded717d232954cb094ac",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims____in1050596572800058400.mlir",
      "new_id": "c0b3f1f5013c2875ac6ceb4f3cd2a4eea2aa5299",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_1__scatterindices__0__updateshape____updatewindowdims____in1050596572800058400.mlir"
    },
    {
      "type": "modify",
      "old_id": "d3d310ba229ad6b487e983240db54fefda0692d1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewindo-3571976316732823693.mlir",
      "new_id": "9788e1e53a088edcd36fa9aed98a586e5fa824c3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewindo-3571976316732823693.mlir"
    },
    {
      "type": "modify",
      "old_id": "6634fca4677294eabd9a8b4bc8052dd68adf28fa",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewindo-6191603219336322807.mlir",
      "new_id": "97d4124fa0c8fc4d5e8a39845877e89507807946",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewindo-6191603219336322807.mlir"
    },
    {
      "type": "modify",
      "old_id": "61b3bd96402332930825e59d77b32ac2b76785a8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowdi-3048175578679534780.mlir",
      "new_id": "4348f508394fee416e074593422d20ef60d24be6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowdi-3048175578679534780.mlir"
    },
    {
      "type": "modify",
      "old_id": "49174621c6a8b02941929136fd136fa2b904b882",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowdi6315664052372191509.mlir",
      "new_id": "8cb3ae8a0bd9806394f3ea042f0103e6698d345d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowdi6315664052372191509.mlir"
    },
    {
      "type": "modify",
      "old_id": "81a418de82f99ca8da7679b0fb5b5c70652ae73f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__updat1387116752558094332.mlir",
      "new_id": "aedf5a259a44ff7994b1941647beabc8c8932ee3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__updat1387116752558094332.mlir"
    },
    {
      "type": "modify",
      "old_id": "1cb323326ee9bad3b6b40f522ed581acc58f22e8",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__updat4589862969700926488.mlir",
      "new_id": "3f91d2829c01895424f2df03a40b9a9239157dad",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__updat4589862969700926488.mlir"
    },
    {
      "type": "modify",
      "old_id": "778aab02f5260cda90a71deb0e203c5ad19a41a2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updates-5157275558322390602.mlir",
      "new_id": "eb22365ae47d79c29a7ddc6e5ae14f4646d0e1ab",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updates-5157275558322390602.mlir"
    },
    {
      "type": "modify",
      "old_id": "0a5d51175bb55bd633ef01bec8bb697888ee2578",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updates-5895939879477908360.mlir",
      "new_id": "8300f39c8868b3240f40a48fa18b8c0a6866b92a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updates-5895939879477908360.mlir"
    },
    {
      "type": "modify",
      "old_id": "a8950acec5a60fc130293baac0b5ed63083a876f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape__5_-9119330590615599912.mlir",
      "new_id": "386355a731432c5bdc844cd53cb9dfee7346803f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape__5_-9119330590615599912.mlir"
    },
    {
      "type": "modify",
      "old_id": "b315c4fbb0b2c79d3a4d29f368222235fe7714c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape__5_7518604883535774282.mlir",
      "new_id": "1d5b2c2ea8fb5d573e11ed15e477cc00fd8b58d5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_int8_5_6_7__scatterindices____0___1_____2___3____updateshape__5_7518604883535774282.mlir"
    },
    {
      "type": "modify",
      "old_id": "bce7f52e6bc403c87246d6dec21e18a013dffd28",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewindowdi1709719826830415272.mlir",
      "new_id": "915f15174dcab3ea8a297c2ca6c81fba5c66d831",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewindowdi1709719826830415272.mlir"
    },
    {
      "type": "modify",
      "old_id": "8da9073f5632c4f48e89dac4b94ce1ef61fb5d90",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewindowdi6949094029620369112.mlir",
      "new_id": "6c41ead6c8d0465fc1508e0bc7a85c6505648dd0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_125__scatterindices__0__updateshape__1___updatewindowdi6949094029620369112.mlir"
    },
    {
      "type": "modify",
      "old_id": "5021731c33219f581d3b5299255e081a885f8fe3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd-565426276648605539.mlir",
      "new_id": "8b8d96704779f91a48e3bac8083d9ca15b7085e4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd-565426276648605539.mlir"
    },
    {
      "type": "modify",
      "old_id": "f1395f18bec29c69ecd4f9e9f44659f5de53a757",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd4334829496169821059.mlir",
      "new_id": "148e0a7a3b448d868b3dfb49dbe2d3d195cf978d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd4334829496169821059.mlir"
    },
    {
      "type": "modify",
      "old_id": "1c771c516ff009fa158dab3c980a096f2b7f4a27",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindowdims-1853568041871720165.mlir",
      "new_id": "1d52083871b15fba5a493a664ad43a4f9b0ed652",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindowdims-1853568041871720165.mlir"
    },
    {
      "type": "modify",
      "old_id": "b75651fe10a639a0a16530b78800879f7a986518",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindowdims-2800941818176172076.mlir",
      "new_id": "0fbea54cf073ee24b17ae7f47010442bfedd0db2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_1__scatterindices__0__updateshape__1___updatewindowdims-2800941818176172076.mlir"
    },
    {
      "type": "modify",
      "old_id": "d9efb6a64aa7e85406622acb4df5c1edc1635f89",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd-1896253718340167045.mlir",
      "new_id": "e979035176bef37c2485f283e4ff5754b77d6998",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd-1896253718340167045.mlir"
    },
    {
      "type": "modify",
      "old_id": "5efa5b30042238ed8bfe5f7d113e3f6446b1d57b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd6150403469595319224.mlir",
      "new_id": "b4425f907be45be65677ab704d853a26aaf18f37",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd6150403469595319224.mlir"
    },
    {
      "type": "modify",
      "old_id": "5ef2caf23444246e7786865fd8ce9382d729dec3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewindow-1202610202676547172.mlir",
      "new_id": "66f14ac19f1d91da4c1021ea6e2564ee208ea9a9",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewindow-1202610202676547172.mlir"
    },
    {
      "type": "modify",
      "old_id": "81ea9c3b08326cc6834dbfca10f7e0b327a0ebdc",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewindow8092064714204763665.mlir",
      "new_id": "b5c2ea4e5d267e0c809b4da1a105774c5a434587",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1_2__updateshape__1___updatewindow8092064714204763665.mlir"
    },
    {
      "type": "modify",
      "old_id": "c98b6659125fe464b055c00674b67178785e85cf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd-1196552373318079471.mlir",
      "new_id": "ffa19df7ae8bd277156080f305378229da9f2ec7",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd-1196552373318079471.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7434b775702399a9adaa00e36c4bc1faaa75d6e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd-6481532818920122396.mlir",
      "new_id": "ebc497833da3ddf597a5e55ba456812dea7236f3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd-6481532818920122396.mlir"
    },
    {
      "type": "modify",
      "old_id": "47d8a8f8320fcc5f0259e19a5df58224664faeb5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatewindo-1828674518234095434.mlir",
      "new_id": "700fcd7c71eef61edb82e3f675ed31b708717bdc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatewindo-1828674518234095434.mlir"
    },
    {
      "type": "modify",
      "old_id": "10766c3eb50241b08980d9c1b81c939941ab17c0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatewindo-7943737821179902950.mlir",
      "new_id": "e57f7cbede59dba567fc7f2a7a55783995eea812",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1_50_3__scatterindices__32__updateshape__1_3__updatewindo-7943737821179902950.mlir"
    },
    {
      "type": "modify",
      "old_id": "ade63d092341b55566b7758ac49d3ebc6e7600c4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims____-6957864214876146366.mlir",
      "new_id": "23354225b6b0b770560910779c09c435fe5b8940",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims____-6957864214876146366.mlir"
    },
    {
      "type": "modify",
      "old_id": "f827882c87f9f92a8c2a8928a3ce5beb2764d33f",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims____8521511291519361452.mlir",
      "new_id": "4220ae246ef00d5fdc62a6ae083a0509aa91508c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_1__scatterindices__0__updateshape____updatewindowdims____8521511291519361452.mlir"
    },
    {
      "type": "modify",
      "old_id": "7a7786184176e31f820e1a691fb89f35ba12a59b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-7577335397410040091.mlir",
      "new_id": "5307980b0fe99c6433416a659a21490b4da7cd21",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-7577335397410040091.mlir"
    },
    {
      "type": "modify",
      "old_id": "d20d8aec376d68637754c3a91423b86ca81c6d05",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin420305544559759402.mlir",
      "new_id": "831502c9d97efb9fe21b6db18092c974721f80fa",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin420305544559759402.mlir"
    },
    {
      "type": "modify",
      "old_id": "58b766cf53139d7d38e77ca0523f124921358f74",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-4211987635293399389.mlir",
      "new_id": "911375f294b1b86d60bf2e1fcb495b545e2b388b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-4211987635293399389.mlir"
    },
    {
      "type": "modify",
      "old_id": "a58e6da6dc3a5cf117881dd6de4321589c25fdf4",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewindow8431377997243514204.mlir",
      "new_id": "fc1a1fecccd3d78a8aadd79e01320391a8940afe",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_4_2_3__scatterindices__3_2__updateshape__2___updatewindow8431377997243514204.mlir"
    },
    {
      "type": "modify",
      "old_id": "1ce553ffb15a39057e4baa108a13a7b0f95d10f1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd-1763064319475721773.mlir",
      "new_id": "26baf9bb204a9c45ab03aca05f6dcf25868765e6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd-1763064319475721773.mlir"
    },
    {
      "type": "modify",
      "old_id": "f8d47537b8169f12057c459f96d09acfc0574ed7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd7192867830617648292.mlir",
      "new_id": "7dd5fc24ce966fb11d101c248cb82aa8096e6b9c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd7192867830617648292.mlir"
    },
    {
      "type": "modify",
      "old_id": "2428deb231a19a9ebfd719374173413c517cb30d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat-2972694197857005228.mlir",
      "new_id": "6650951ce66fe68078ef91c943aebf139cb6f4e4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat-2972694197857005228.mlir"
    },
    {
      "type": "modify",
      "old_id": "5de936255e85c4e78211173d8bda8240995210fb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat5898339477728515111.mlir",
      "new_id": "520935523a3e1f8a02165264de658b5d011fa5e1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat5898339477728515111.mlir"
    },
    {
      "type": "modify",
      "old_id": "a0734cd275f688cd26d29ede3c2eecd9a1e05dc5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updateshape__2602811564001695677.mlir",
      "new_id": "7464c51a03b24cd6a65de95fb4f1615289adb341",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updateshape__2602811564001695677.mlir"
    },
    {
      "type": "modify",
      "old_id": "7f543bbc2de380e097ade00c2d6523ee16f09811",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updateshape__500166362744140911.mlir",
      "new_id": "8d09eebe3bc880ef858f108634299be8ef5b9a30",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint16_5_6_7__scatterindices____0___1_____2___3____updateshape__500166362744140911.mlir"
    },
    {
      "type": "modify",
      "old_id": "c0dc5469d5c63f279c137d8ebb2f2202bf077920",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewindowdi-1688302901246251983.mlir",
      "new_id": "aa3e4f91c5b1fb3c88462475dcb87d578541339c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewindowdi-1688302901246251983.mlir"
    },
    {
      "type": "modify",
      "old_id": "719809cb8d89f8fb535c26f68c3ac876bbe26f50",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewindowdi-7403433579795086737.mlir",
      "new_id": "fd110f8ed22ecdb26a8f129c8030bc5471c8296d",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_125__scatterindices__0__updateshape__1___updatewindowdi-7403433579795086737.mlir"
    },
    {
      "type": "modify",
      "old_id": "0142b7c1e2150cff3889263edc682d4448815863",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd124765762738191335.mlir",
      "new_id": "6b147e8eb5220635f0efe57f4cd863f7e9f5a467",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd124765762738191335.mlir"
    },
    {
      "type": "modify",
      "old_id": "8f9f71777a991bf8efa2fff75f2ddb5cff37efae",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd781473145886613309.mlir",
      "new_id": "dab741350dd3aba3ebb997b66df8a318f3798b8a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1_1__scatterindices__0__updateshape__1_1__updatewindowd781473145886613309.mlir"
    },
    {
      "type": "modify",
      "old_id": "9ea46614d82218046e12060ead482e1756b4a239",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindowdims-8211810013263470528.mlir",
      "new_id": "c740bd5c74d22e362369c4fd25a2d850de2a7d74",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindowdims-8211810013263470528.mlir"
    },
    {
      "type": "modify",
      "old_id": "728cde2fcfae7f96469ff693e6b8ec5aaa16e7dd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindowdims7129685623957404554.mlir",
      "new_id": "a63bbaf45a0cfcc125b3bb70840e06c3ec5f5b97",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_1__scatterindices__0__updateshape__1___updatewindowdims7129685623957404554.mlir"
    },
    {
      "type": "modify",
      "old_id": "fa61d94544733053abdfd611b2618704da5e873e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd5320211669957695973.mlir",
      "new_id": "78bd1e779c61177f86d5f295e4b1c9a08d3dec5f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd5320211669957695973.mlir"
    },
    {
      "type": "modify",
      "old_id": "360997acfcf1120ed0046854ef8f7464441177d9",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd5461774889517582963.mlir",
      "new_id": "5fb7fbfc99430e50039b07c3b4db07a3dddf7455",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__0__updateshape__2_3__updatewindowd5461774889517582963.mlir"
    },
    {
      "type": "modify",
      "old_id": "96392e3807a4a37cc250a86cfb91ec6ffffeb4c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewindow-163652940973155099.mlir",
      "new_id": "e413ab611c485568c593ad7561aa6aa9ab5e8eae",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewindow-163652940973155099.mlir"
    },
    {
      "type": "modify",
      "old_id": "a50df64b55c48177f588c4a365089b5eed3f5b8b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewindow8184019343288996738.mlir",
      "new_id": "f84fe3a4a004b030ec9707fa09ad116c3364f42a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1_2__updateshape__1___updatewindow8184019343288996738.mlir"
    },
    {
      "type": "modify",
      "old_id": "fa6a1ac9bb0511dd03e7f450cb43811ff5b3c8d7",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd2672684945363288763.mlir",
      "new_id": "3607acda35e9482a5bd30bdb4e1a7a237b6c4755",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd2672684945363288763.mlir"
    },
    {
      "type": "modify",
      "old_id": "47c8e8678ce006287f2a52d9936a317a5c0c5336",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd5354314623131050500.mlir",
      "new_id": "4ce18a177294c38c1ccb17ae7bf7e0e2237c22b0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_2_3__scatterindices__1__updateshape__1_3__updatewindowd5354314623131050500.mlir"
    },
    {
      "type": "modify",
      "old_id": "8e7cb89d7bfca23616acf063752649beabbc89a1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatewindo1868587186902615224.mlir",
      "new_id": "15c4d6d75cf75f410491e5fa07f03b4816f05c6b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatewindo1868587186902615224.mlir"
    },
    {
      "type": "modify",
      "old_id": "42e8050ad0b9e9a98a223ae09b3e69a25e0ef711",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatewindo6837170408141216480.mlir",
      "new_id": "8eb17eb9f6a3a2b73861cdb4a04890e193c78fd5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1_50_3__scatterindices__32__updateshape__1_3__updatewindo6837170408141216480.mlir"
    },
    {
      "type": "modify",
      "old_id": "15dacca0ac2f660e15182724509e9fb659f85504",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims____-3546209324335573385.mlir",
      "new_id": "c1f1c49e41e5f05017a45d3eafa3ee08e7827c55",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims____-3546209324335573385.mlir"
    },
    {
      "type": "modify",
      "old_id": "8b26a9e9f8d844e1564110300203f3a0bc65b56b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims____-3671700194875203478.mlir",
      "new_id": "4118ac39ced37981c5d63a4d45b653b78f7975d5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_1__scatterindices__0__updateshape____updatewindowdims____-3671700194875203478.mlir"
    },
    {
      "type": "modify",
      "old_id": "4c5db795e959e61234f6e90f767604293e39ad98",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-2522674721507997761.mlir",
      "new_id": "5c94f7f9a7dffbfa00da2d60c8b6f81cbda1a6af",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-2522674721507997761.mlir"
    },
    {
      "type": "modify",
      "old_id": "b846f49d3c45756d1cb36939b48f88dc6d56cf21",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-2758232658412626325.mlir",
      "new_id": "fbef538d7e0b8d6cf978416e1a56934d92c90105",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewin-2758232658412626325.mlir"
    },
    {
      "type": "modify",
      "old_id": "26f1817eac4aba1a540dcce5fd6ff3d864588656",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-1940630927273973679.mlir",
      "new_id": "cc92a533fc9d44ae07084e30910f774922a7515a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-1940630927273973679.mlir"
    },
    {
      "type": "modify",
      "old_id": "b3a77d61063b4dc9e0b6d7a6ed0f91e044492ef6",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-6965913679939402575.mlir",
      "new_id": "a1078f7579a3cdc08b7b4f7cbbf55d97cfa7984b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_4_2_3__scatterindices__3_2__updateshape__2___updatewindow-6965913679939402575.mlir"
    },
    {
      "type": "modify",
      "old_id": "e7e1d44b977aedf267d1342b9534fa4d341b35c5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd-8712709380021038962.mlir",
      "new_id": "143ae672778846045fee7c4b11c35d6b134f67ca",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd-8712709380021038962.mlir"
    },
    {
      "type": "modify",
      "old_id": "77a9435d272615cb10d201662eed0ffe265077cb",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd4449301830185425735.mlir",
      "new_id": "64cc2df422862c70fa3887f5f21bd8a6e10842e5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upd4449301830185425735.mlir"
    },
    {
      "type": "modify",
      "old_id": "d48b9979c08691f11f7f48b7887fd4b633280c8b",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat-4293316453503330429.mlir",
      "new_id": "6773d5eb5f6b87b79a2fe39656f60ffa7b792dd4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat-4293316453503330429.mlir"
    },
    {
      "type": "modify",
      "old_id": "99eb31ea531ca76ef759771ca0de82869299d9f3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat7893343186085503986.mlir",
      "new_id": "d555dad48e4a66a03478bedaae0d9140cf3ec885",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____updat7893343186085503986.mlir"
    },
    {
      "type": "modify",
      "old_id": "24d65182e8f2063be172f24e1b225a0e0988cf4e",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updateshape__4842477100420295985.mlir",
      "new_id": "7a39dd3dc541a1ad55e911b9ca7e2f760f851fe4",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updateshape__4842477100420295985.mlir"
    },
    {
      "type": "modify",
      "old_id": "50685889cf05ed7ae68e62e7711439bcae2254bf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updateshape__8225012549892341281.mlir",
      "new_id": "cbe740cfa8dbe642e91127fa48d0e11c504e1ed3",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint32_5_6_7__scatterindices____0___1_____2___3____updateshape__8225012549892341281.mlir"
    },
    {
      "type": "modify",
      "old_id": "cba20649262422b31b9bd11c8f1cd94214c3c020",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindowdim4897701391840007208.mlir",
      "new_id": "15b45ef28b23bc1f6591127ff87f13dd9aef2418",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindowdim4897701391840007208.mlir"
    },
    {
      "type": "modify",
      "old_id": "36526c551e46ee2a646d225b81da8ac7551bdafd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindowdim6232235312107433645.mlir",
      "new_id": "4a020db43c27c28900ea99ff0326c866e7f1d43f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_125__scatterindices__0__updateshape__1___updatewindowdim6232235312107433645.mlir"
    },
    {
      "type": "modify",
      "old_id": "3adde70a9c79683532ca8150f973276e1bcdba4a",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi-36899100055995107.mlir",
      "new_id": "8bda9485448a40b4f64d54b65383cade14ca6db8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi-36899100055995107.mlir"
    },
    {
      "type": "modify",
      "old_id": "251bdf0a3a5c4fdc62b4b63c66df1c853df5dd79",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi1177948157318465368.mlir",
      "new_id": "10969968ce7b1cfec2f83d960b9177c29e9140bd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1_1__scatterindices__0__updateshape__1_1__updatewindowdi1177948157318465368.mlir"
    },
    {
      "type": "modify",
      "old_id": "d940101e7a00c1c596e240445fd9464a27c96614",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowdims_-5834322957039009125.mlir",
      "new_id": "e1f155efb5b9f58349f7574855ae919bb18d973c",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowdims_-5834322957039009125.mlir"
    },
    {
      "type": "modify",
      "old_id": "2f19e0a5783b42b15b0dc8fe7f70ac9df9351cf3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowdims_8219644983733290724.mlir",
      "new_id": "270ee110cb45f9211b6e041fdc0786f9eb26e3fd",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_1__scatterindices__0__updateshape__1___updatewindowdims_8219644983733290724.mlir"
    },
    {
      "type": "modify",
      "old_id": "d7edd643e74130d13285c9970b0e2c22764a7afd",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-5861384246211432114.mlir",
      "new_id": "894ca79b063f6bc491f0ad5b1fb39e1a2a6f950e",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi-5861384246211432114.mlir"
    },
    {
      "type": "modify",
      "old_id": "47ef750017a7deec7db3e59c3904a9d8faf923ed",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi1584703602367340481.mlir",
      "new_id": "c49058fbee4cb8f8a558f28236808b703ea42e9b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__0__updateshape__2_3__updatewindowdi1584703602367340481.mlir"
    },
    {
      "type": "modify",
      "old_id": "c705c7746d8a15d7644968216d922bd94265dedf",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-1546876755771932966.mlir",
      "new_id": "2c7e5c435b605c051db87b2d425e7619ca36fd1b",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-1546876755771932966.mlir"
    },
    {
      "type": "modify",
      "old_id": "8b33913abc73d72ba7f2beba6a2c4f09ec9bd4c1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-4537251676254979075.mlir",
      "new_id": "63001553a563d69281bfd44938e4f63677cd2cff",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1_2__updateshape__1___updatewindowd-4537251676254979075.mlir"
    },
    {
      "type": "modify",
      "old_id": "b7ff0e84fce27b8cc16a07435c6ba9c4f12135e1",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-2704631236776867428.mlir",
      "new_id": "7f163cfb44095b029dacabff1dd9c18c0d9c9762",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi-2704631236776867428.mlir"
    },
    {
      "type": "modify",
      "old_id": "77e3f74ef1d8727af0e0d965f9d8df0e085d3a55",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi8717625349561755806.mlir",
      "new_id": "6f74f4837262170c53a1479d460f9153370be77f",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_2_3__scatterindices__1__updateshape__1_3__updatewindowdi8717625349561755806.mlir"
    },
    {
      "type": "modify",
      "old_id": "da78e3d0ebdcef1745ffe5ff5eb930357f9429c2",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-2069691074413654165.mlir",
      "new_id": "dbe90dfa3f9bc347a4731838e7661895fb03aeec",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-2069691074413654165.mlir"
    },
    {
      "type": "modify",
      "old_id": "13079581357516fe662833f79d9475bd44274c57",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-9204662166819519530.mlir",
      "new_id": "be4371bde12ce670eaa7f38a7e4feb730108b5fb",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1_50_3__scatterindices__32__updateshape__1_3__updatewindow-9204662166819519530.mlir"
    },
    {
      "type": "modify",
      "old_id": "e2de59c0f67e9d7b880e9aba2c69647f7aa098c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims____i4654172382900524664.mlir",
      "new_id": "ff6b36a533b5483c7b1cc468e9572e7015bd5cd5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims____i4654172382900524664.mlir"
    },
    {
      "type": "modify",
      "old_id": "e2de59c0f67e9d7b880e9aba2c69647f7aa098c3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims____i805910080804411976.mlir",
      "new_id": "ff6b36a533b5483c7b1cc468e9572e7015bd5cd5",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_1__scatterindices__0__updateshape____updatewindowdims____i805910080804411976.mlir"
    },
    {
      "type": "modify",
      "old_id": "c4aefe2eaefe7f54f992e89dce6e583043f01ff3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-1528822601276352271.mlir",
      "new_id": "dd4d53155b4a53113676dce736c99e9a5b44c6fc",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-1528822601276352271.mlir"
    },
    {
      "type": "modify",
      "old_id": "7bd4f77de35376cb00739e98dd861ac0aaecb646",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-3037328780648918720.mlir",
      "new_id": "7eff650fe1736b5f945fa11ca43ab0b6d82a5728",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3_5__scatterindices__0_4__updateshape__4_3__updatewind-3037328780648918720.mlir"
    },
    {
      "type": "modify",
      "old_id": "2c0fc0b856eea1dc660eb88d7776a02bf9d09ce3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-6696604613778121788.mlir",
      "new_id": "aa8c1c3f4b37578146d3f78e7ce39d9795170ef1",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-6696604613778121788.mlir"
    },
    {
      "type": "modify",
      "old_id": "054d22d8000a2405c9701179bbe4352e3906227d",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-7788287855338834369.mlir",
      "new_id": "852ea9a3d8a0f6cc98fc00354764797c3a09e938",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_4_2_3__scatterindices__3_2__updateshape__2___updatewindowd-7788287855338834369.mlir"
    },
    {
      "type": "modify",
      "old_id": "ef1bb6f2bfc45d11b49ca0d647c66280e89f31b3",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda6636636746706115426.mlir",
      "new_id": "19af6942fbdc83bbcd68b6999431e2406f67dad0",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda6636636746706115426.mlir"
    },
    {
      "type": "modify",
      "old_id": "2e8be410b9d41b6591992d35723f9659a509b6d5",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda7288769158933240945.mlir",
      "new_id": "b43be2499a3a4b0a852690130b179b1d0a9771a8",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices___0_1___2_3___updateshape__2_7__upda7288769158933240945.mlir"
    },
    {
      "type": "modify",
      "old_id": "810b6b3aab6295961766387705e729871fe07438",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-5519337277775784500.mlir",
      "new_id": "7470c5fa4195ab9dcefa61aa3c72fedf1deb98f6",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update-5519337277775784500.mlir"
    },
    {
      "type": "modify",
      "old_id": "55b6a8dae8679708fd4c246bdb1fa1bd9b759a80",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update6802180533867290475.mlir",
      "new_id": "c17c39227cbe6af1ef33cc245b815318ad06209a",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0_1___2_3_____4_0___1_2____update6802180533867290475.mlir"
    },
    {
      "type": "modify",
      "old_id": "4ef4784378e2a398865d0f9c70a32d2946a3abf0",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshape__5-4899128541496460728.mlir",
      "new_id": "9e00fcf3e79adf12a0a68a4840b8798cfd4122ed",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshape__5-4899128541496460728.mlir"
    },
    {
      "type": "modify",
      "old_id": "cd032ac701c09d80d6a723c0458ffa2309dc7b07",
      "old_mode": 33188,
      "old_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshape__5-8281471711907089690.mlir",
      "new_id": "5c467a500cb7197210d5ce193081e2eaed6d5ce2",
      "new_mode": 33188,
      "new_path": "stablehlo/testdata/scatter_no_xla_unique_indices_shape_uint8_5_6_7__scatterindices____0___1_____2___3____updateshape__5-8281471711907089690.mlir"
    },
    {
      "type": "modify",
      "old_id": "9965d1b24bd3010368fdf5b6789342c3cdba0409",
      "old_mode": 33188,
      "old_path": "stablehlo/tests/infer_stablehlo.mlir",
      "new_id": "76342d22bd66bc331617efea675e1ea08f2df4dd",
      "new_mode": 33188,
      "new_path": "stablehlo/tests/infer_stablehlo.mlir"
    },
    {
      "type": "add",
      "old_id": "0000000000000000000000000000000000000000",
      "old_mode": 0,
      "old_path": "/dev/null",
      "new_id": "f6d10f3d902cd0d1f4531ee73ff199f1e58dacc0",
      "new_mode": 33188,
      "new_path": "stablehlo/tests/interpret_scatter.mlir"
    },
    {
      "type": "modify",
      "old_id": "8aab2ad41b6a65bf192abbe89f4da3c6581a3ca9",
      "old_mode": 33188,
      "old_path": "stablehlo/tests/verify_scatter.mlir",
      "new_id": "1b7ec22fdcd3634607f13e4ce14773237ed20b22",
      "new_mode": 33188,
      "new_path": "stablehlo/tests/verify_scatter.mlir"
    }
  ]
}
