qairt-visualizer 0.5.1__py3-none-win_amd64.whl → 0.7.0__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. qairt_visualizer/core/helpers/version.py +23 -0
  2. qairt_visualizer/core/launchers/base_ui_launcher_context.py +28 -7
  3. qairt_visualizer/core/launchers/electron_launcher_context.py +72 -3
  4. qairt_visualizer/core/parsers/dlc_parser/dlc_parser.py +105 -33
  5. qairt_visualizer/core/parsers/dlc_parser/get_source_topology.py +47 -0
  6. qairt_visualizer/core/parsers/dlc_parser/libDlModelToolsPy.pyd +0 -0
  7. qairt_visualizer/core/parsers/dlc_parser/libDlModelToolsPy.so +0 -0
  8. qairt_visualizer/core/parsers/dlc_parser/libPyIrGraph.pyd +0 -0
  9. qairt_visualizer/core/parsers/dlc_parser/libPyIrGraph.so +0 -0
  10. qairt_visualizer/core/parsers/dlc_parser/models/op_tensor_mappings.py +8 -4
  11. qairt_visualizer/core/ui/dist/browser/__init__.py +47 -0
  12. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/acuity.js → acuity.js} +3 -3
  13. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/app.js → app.js} +63 -57
  14. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/armnn-schema.js → armnn-schema.js} +590 -5
  15. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/armnn.js → armnn.js} +3 -5
  16. qairt_visualizer/core/ui/dist/browser/assets/i18n/common/en.json +8 -2
  17. qairt_visualizer/core/ui/dist/browser/assets/i18n/graph/en.json +44 -36
  18. qairt_visualizer/core/ui/dist/browser/assets/i18n/panels/en.json +9 -3
  19. qairt_visualizer/core/ui/dist/browser/assets/i18n/panels/model-diff/en.json +6 -0
  20. qairt_visualizer/core/ui/dist/browser/assets/i18n/workspaces/en.json +3 -0
  21. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/barracuda.js → barracuda.js} +3 -3
  22. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/base.js → base.js} +20 -16
  23. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/bigdl.js → bigdl.js} +2 -2
  24. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/browser.js → browser.js} +59 -49
  25. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe.js → caffe.js} +3 -3
  26. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe2-proto.js → caffe2-proto.js} +26 -26
  27. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe2.js → caffe2.js} +113 -114
  28. qairt_visualizer/core/ui/dist/browser/chunk-3SMGFPTN.js +11 -0
  29. qairt_visualizer/core/ui/dist/browser/chunk-43LQFSHA.js +1 -0
  30. qairt_visualizer/core/ui/dist/browser/chunk-447NKSFT.js +1 -0
  31. qairt_visualizer/core/ui/dist/browser/chunk-5MAR72QP.js +1 -0
  32. qairt_visualizer/core/ui/dist/browser/chunk-7PTY53DS.js +5 -0
  33. qairt_visualizer/core/ui/dist/browser/chunk-GAUD627J.js +1 -0
  34. qairt_visualizer/core/ui/dist/browser/chunk-H7TLLCSI.js +1 -0
  35. qairt_visualizer/core/ui/dist/browser/chunk-HISUA6LZ.js +4 -0
  36. qairt_visualizer/core/ui/dist/browser/chunk-HXB7IAZI.js +1 -0
  37. qairt_visualizer/core/ui/dist/browser/chunk-JPD5T7FP.js +120 -0
  38. qairt_visualizer/core/ui/dist/browser/chunk-L3QJ7DR2.js +1 -0
  39. qairt_visualizer/core/ui/dist/browser/{chunk-HBP6TEQ6.js → chunk-MCR4N53U.js} +1 -1
  40. qairt_visualizer/core/ui/dist/browser/chunk-QD7PA2I4.js +19 -0
  41. qairt_visualizer/core/ui/dist/browser/chunk-TKZG6FLW.js +12 -0
  42. qairt_visualizer/core/ui/dist/browser/chunk-WFAVWONI.js +5 -0
  43. qairt_visualizer/core/ui/dist/browser/chunk-WRMDGTCT.js +35 -0
  44. qairt_visualizer/core/ui/dist/browser/chunk-X25J6H7V.js +1 -0
  45. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/circle-schema.js → circle-schema.js} +17 -0
  46. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/circle.js → circle.js} +3 -3
  47. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/cntk.js → cntk.js} +1 -1
  48. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/coreml-proto.js → coreml-proto.js} +1 -0
  49. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/coreml.js → coreml.js} +24 -21
  50. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dagre.js → dagre.js} +5 -5
  51. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/darknet-metadata.json → darknet-metadata.json} +0 -1
  52. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/darknet.js → darknet.js} +3 -3
  53. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/electron.mjs → desktop.mjs} +44 -131
  54. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dl4j.js → dl4j.js} +5 -2
  55. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dlc-schema.js → dlc-schema.js} +8 -8
  56. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dlc.js → dlc.js} +110 -29
  57. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dnn.js → dnn.js} +2 -4
  58. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dot.js → dot.js} +1 -1
  59. qairt_visualizer/core/ui/dist/browser/eaix.js +24 -0
  60. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/espresso.js → espresso.js} +1 -1
  61. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/executorch-schema.js → executorch-schema.js} +363 -42
  62. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/executorch.js → executorch.js} +108 -40
  63. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/flatbuffers.js → flatbuffers.js} +1 -1
  64. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/flax.js → flax.js} +1 -1
  65. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/flux.js → flux.js} +2 -2
  66. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/gguf.js → gguf.js} +44 -24
  67. qairt_visualizer/core/ui/dist/browser/grapher.css +145 -0
  68. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/grapher.js → grapher.js} +24 -48
  69. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/hailo.js → hailo.js} +1 -1
  70. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/hickle.js → hickle.js} +1 -1
  71. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/imgdnn.js → imgdnn.js} +1 -1
  72. qairt_visualizer/core/ui/dist/browser/index.html +15 -16
  73. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/index.js → index.js} +2 -24
  74. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/json.js → json.js} +28 -3
  75. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/kann.js → kann.js} +1 -1
  76. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/keras-metadata.json → keras-metadata.json} +15 -7
  77. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/keras.js → keras.js} +13 -7
  78. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/kmodel.js → kmodel.js} +3 -3
  79. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/lasagne.js → lasagne.js} +2 -2
  80. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/lightgbm.js → lightgbm.js} +1 -1
  81. qairt_visualizer/core/ui/dist/browser/main-EVI665MB.js +1 -0
  82. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mediapipe.js → mediapipe.js} +1 -1
  83. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/megengine.js → megengine.js} +1 -1
  84. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/message.js → message.js} +3 -2
  85. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mlir.js → mlir.js} +53 -17
  86. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mlnet.js → mlnet.js} +2 -3
  87. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mnn-schema.js → mnn-schema.js} +9 -6
  88. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mnn.js → mnn.js} +2 -2
  89. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mslite.js → mslite.js} +3 -3
  90. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mxnet.js → mxnet.js} +2 -2
  91. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/ncnn.js → ncnn.js} +3 -2
  92. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/nnabla.js → nnabla.js} +4 -4
  93. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/nnef.js → nnef.js} +1 -1
  94. qairt_visualizer/core/ui/dist/browser/node.js +102 -0
  95. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/numpy.js → numpy.js} +9 -9
  96. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/om.js → om.js} +2 -2
  97. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onednn.js → onednn.js} +1 -1
  98. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onnx-metadata.json → onnx-metadata.json} +3500 -233
  99. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onnx-proto.js → onnx-proto.js} +436 -4
  100. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onnx.js → onnx.js} +284 -199
  101. qairt_visualizer/core/ui/dist/browser/onnx.py +231 -0
  102. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/openvino.js → openvino.js} +36 -31
  103. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/paddle-proto.js → paddle-proto.js} +54 -54
  104. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/paddle.js → paddle.js} +22 -3
  105. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/pickle.js → pickle.js} +3 -3
  106. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/python.js → python.js} +743 -325
  107. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/pytorch-metadata.json → pytorch-metadata.json} +3217 -2934
  108. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/pytorch-proto.js → pytorch-proto.js} +4 -4
  109. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/pytorch.js → pytorch.js} +172 -86
  110. qairt_visualizer/core/ui/dist/browser/pytorch.py +304 -0
  111. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/qnn.js → qnn.js} +6 -2
  112. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/rknn.js → rknn.js} +3 -3
  113. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/safetensors.js → safetensors.js} +2 -2
  114. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/sentencepiece.js → sentencepiece.js} +1 -1
  115. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/server.py → server.py} +95 -103
  116. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/sklearn-metadata.json → sklearn-metadata.json} +15 -10
  117. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/sklearn.js → sklearn.js} +5 -5
  118. qairt_visualizer/core/ui/dist/browser/{styles-MRR6DOT2.css → styles-2Z5PB4WZ.css} +1 -1
  119. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tar.js → tar.js} +18 -1
  120. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tengine.js → tengine.js} +1 -1
  121. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tensorrt.js → tensorrt.js} +1 -1
  122. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tf-metadata.json → tf-metadata.json} +1255 -163
  123. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tf-proto.js → tf-proto.js} +46 -12
  124. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tf.js → tf.js} +36 -13
  125. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tflite.js → tflite.js} +18 -21
  126. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tnn.js → tnn.js} +1 -3
  127. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/torch.js → torch.js} +1 -1
  128. qairt_visualizer/core/ui/dist/browser/transformers.js +171 -0
  129. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tvm.js → tvm.js} +2 -2
  130. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/uff.js → uff.js} +2 -2
  131. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/view.js → view.js} +1406 -1115
  132. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/weka.js → weka.js} +3 -4
  133. qairt_visualizer/core/ui/dist/browser/worker-EHYFMTM7.js +1 -0
  134. qairt_visualizer/core/ui/dist/browser/worker-KX5DA6GL.js +4 -0
  135. qairt_visualizer/core/ui/dist/browser/xgboost.js +59 -0
  136. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/xml.js → xml.js} +2 -2
  137. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/xmodel.js → xmodel.js} +1 -1
  138. qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/zip.js → zip.js} +38 -41
  139. qairt_visualizer/core/ui/dist/qairt_visualizer.exe +0 -0
  140. qairt_visualizer/core/ui/dist/resources/app.asar +0 -0
  141. {qairt_visualizer-0.5.1.dist-info → qairt_visualizer-0.7.0.dist-info}/METADATA +1 -1
  142. qairt_visualizer-0.7.0.dist-info/RECORD +265 -0
  143. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/CITATION.cff +0 -10
  144. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/CONTRIBUTING.md +0 -29
  145. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/LICENSE +0 -21
  146. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/README.md +0 -36
  147. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/jenkins/Jenkinsfile +0 -69
  148. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/package-lock.json +0 -5743
  149. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/package.js +0 -689
  150. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/package.json +0 -53
  151. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/package.py +0 -87
  152. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/background.png +0 -0
  153. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/background.svg +0 -5
  154. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/background@2x.png +0 -0
  155. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/electron-builder.json +0 -109
  156. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/eslint.config.js +0 -231
  157. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/forge.config.js +0 -87
  158. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.html +0 -27
  159. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.icns +0 -0
  160. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.icns.svg +0 -175
  161. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.ico +0 -0
  162. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.png +0 -0
  163. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/icon.svg +0 -179
  164. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/notarize.cjs +0 -24
  165. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/pyproject.toml +0 -63
  166. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/publish/setup.py +0 -43
  167. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/resolve_upgrade_merge.sh +0 -10
  168. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/__init__.py +0 -41
  169. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/cambricon.js +0 -32
  170. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/favicon.ico +0 -0
  171. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/grapher.css +0 -602
  172. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/index.html +0 -2222
  173. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/modular.js +0 -81
  174. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/onnx.py +0 -227
  175. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/pytorch.py +0 -298
  176. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/qais/qcontrol.js +0 -207
  177. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/qais/qgraph-toolkit.js +0 -123
  178. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/qais/qsubgraph.js +0 -226
  179. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/qais/qsummary-panel.js +0 -89
  180. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/source/server.js +0 -250
  181. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/test/backend.py +0 -80
  182. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/test/measures.py +0 -27
  183. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/test/models.js +0 -359
  184. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/test/models.json +0 -8523
  185. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/test/worker.js +0 -859
  186. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/armnn +0 -33
  187. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/bigdl +0 -33
  188. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/caffe +0 -37
  189. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/caffe-script.js +0 -12
  190. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/circle +0 -43
  191. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/circle-script.js +0 -87
  192. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/circle_script.js +0 -73
  193. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/cntk +0 -33
  194. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/coreml +0 -49
  195. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/dlc +0 -20
  196. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/dlc.fbs +0 -165
  197. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/dnn +0 -20
  198. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/dnn.proto +0 -79
  199. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/executorch +0 -41
  200. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/flatc.js +0 -1315
  201. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/gguf +0 -22
  202. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/kann +0 -33
  203. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/keras +0 -62
  204. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/keras_metadata.py +0 -205
  205. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/keras_script.py +0 -204
  206. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/mediapipe +0 -72
  207. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/megengine +0 -47
  208. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/megengine-script.js +0 -113
  209. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/megengine_script.js +0 -112
  210. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/mnn +0 -40
  211. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/mslite +0 -45
  212. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/mslite-script.js +0 -83
  213. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/mslite_metadata.js +0 -82
  214. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/nnabla +0 -79
  215. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/nnabla_script.py +0 -145
  216. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/om +0 -26
  217. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/om.proto +0 -204
  218. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/onnx +0 -135
  219. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/onnx_metadata.py +0 -233
  220. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/onnx_script.py +0 -332
  221. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/paddle +0 -38
  222. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/protoc.js +0 -1609
  223. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/pytorch +0 -85
  224. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/pytorch_metadata.py +0 -166
  225. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/pytorch_script.py +0 -404
  226. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/rknn +0 -20
  227. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/rknn.fbs +0 -78
  228. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/sentencepiece +0 -39
  229. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/sklearn +0 -65
  230. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/sklearn_metadata.py +0 -126
  231. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/sklearn_script.py +0 -129
  232. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/tf +0 -97
  233. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/tf_metadata.py +0 -403
  234. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/tf_script.py +0 -422
  235. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/tflite-script.js +0 -87
  236. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/tflite_metadata.js +0 -73
  237. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/uff +0 -20
  238. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/uff.proto +0 -127
  239. qairt_visualizer/core/ui/dist/browser/assets/netron_plugin/tools/xmodel +0 -36
  240. qairt_visualizer/core/ui/dist/browser/chunk-3NAQCYEU.js +0 -1
  241. qairt_visualizer/core/ui/dist/browser/chunk-NFKTPX3Z.js +0 -11
  242. qairt_visualizer/core/ui/dist/browser/chunk-OMI6HJ5Y.js +0 -19
  243. qairt_visualizer/core/ui/dist/browser/chunk-TTZXMRJ5.js +0 -34
  244. qairt_visualizer/core/ui/dist/browser/main-NXPVOKMG.js +0 -1
  245. qairt_visualizer/core/ui/dist/browser/worker-5VPKG2GV.js +0 -4
  246. qairt_visualizer/core/ui/dist/browser/worker-UVGWDZ5K.js +0 -1
  247. qairt_visualizer-0.5.1.dist-info/RECORD +0 -337
  248. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/acuity-metadata.json → acuity-metadata.json} +0 -0
  249. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/armnn-metadata.json → armnn-metadata.json} +0 -0
  250. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/bigdl-metadata.json → bigdl-metadata.json} +0 -0
  251. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/bigdl-proto.js → bigdl-proto.js} +0 -0
  252. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe-metadata.json → caffe-metadata.json} +0 -0
  253. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe-proto.js → caffe-proto.js} +0 -0
  254. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/caffe2-metadata.json → caffe2-metadata.json} +0 -0
  255. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/catboost.js → catboost.js} +0 -0
  256. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/circle-metadata.json → circle-metadata.json} +0 -0
  257. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/cntk-metadata.json → cntk-metadata.json} +0 -0
  258. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/cntk-proto.js → cntk-proto.js} +0 -0
  259. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/coreml-metadata.json → coreml-metadata.json} +0 -0
  260. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dl4j-metadata.json → dl4j-metadata.json} +0 -0
  261. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dlc-metadata.json → dlc-metadata.json} +0 -0
  262. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dnn-metadata.json → dnn-metadata.json} +0 -0
  263. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/dnn-proto.js → dnn-proto.js} +0 -0
  264. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/espresso-metadata.json → espresso-metadata.json} +0 -0
  265. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/flexbuffers.js → flexbuffers.js} +0 -0
  266. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/flux-metadata.json → flux-metadata.json} +0 -0
  267. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/hailo-metadata.json → hailo-metadata.json} +0 -0
  268. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/hdf5.js → hdf5.js} +0 -0
  269. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/icon.png → icon.png} +0 -0
  270. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/kann-metadata.json → kann-metadata.json} +0 -0
  271. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/kann-schema.js → kann-schema.js} +0 -0
  272. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/keras-proto.js → keras-proto.js} +0 -0
  273. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/lasagne-metadata.json → lasagne-metadata.json} +0 -0
  274. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/megengine-metadata.json → megengine-metadata.json} +0 -0
  275. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/megengine-schema.js → megengine-schema.js} +0 -0
  276. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mlnet-metadata.json → mlnet-metadata.json} +0 -0
  277. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mnn-metadata.json → mnn-metadata.json} +0 -0
  278. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mslite-metadata.json → mslite-metadata.json} +0 -0
  279. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mslite-schema.js → mslite-schema.js} +0 -0
  280. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/mxnet-metadata.json → mxnet-metadata.json} +0 -0
  281. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/ncnn-metadata.json → ncnn-metadata.json} +0 -0
  282. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/nnabla-metadata.json → nnabla-metadata.json} +0 -0
  283. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/nnabla-proto.js → nnabla-proto.js} +0 -0
  284. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/nnc.js → nnc.js} +0 -0
  285. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/om-metadata.json → om-metadata.json} +0 -0
  286. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/om-proto.js → om-proto.js} +0 -0
  287. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onednn-metadata.json → onednn-metadata.json} +0 -0
  288. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/onnx-schema.js → onnx-schema.js} +0 -0
  289. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/openvino-metadata.json → openvino-metadata.json} +0 -0
  290. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/paddle-metadata.json → paddle-metadata.json} +0 -0
  291. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/paddle-schema.js → paddle-schema.js} +0 -0
  292. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/protobuf.js → protobuf.js} +0 -0
  293. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/pytorch-schema.js → pytorch-schema.js} +0 -0
  294. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/qnn-metadata.json → qnn-metadata.json} +0 -0
  295. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/rknn-metadata.json → rknn-metadata.json} +0 -0
  296. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/rknn-schema.js → rknn-schema.js} +0 -0
  297. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/sentencepiece-proto.js → sentencepiece-proto.js} +0 -0
  298. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tengine-metadata.json → tengine-metadata.json} +0 -0
  299. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/text.js → text.js} +0 -0
  300. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tflite-metadata.json → tflite-metadata.json} +0 -0
  301. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tflite-schema.js → tflite-schema.js} +0 -0
  302. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/tnn-metadata.json → tnn-metadata.json} +0 -0
  303. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/torch-metadata.json → torch-metadata.json} +0 -0
  304. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/uff-metadata.json → uff-metadata.json} +0 -0
  305. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/uff-proto.js → uff-proto.js} +0 -0
  306. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/worker.js → worker.js} +0 -0
  307. /qairt_visualizer/core/ui/dist/browser/{assets/netron_plugin/source/xmodel-proto.js → xmodel-proto.js} +0 -0
  308. {qairt_visualizer-0.5.1.dist-info → qairt_visualizer-0.7.0.dist-info}/LICENSE.pdf +0 -0
  309. {qairt_visualizer-0.5.1.dist-info → qairt_visualizer-0.7.0.dist-info}/WHEEL +0 -0
  310. {qairt_visualizer-0.5.1.dist-info → qairt_visualizer-0.7.0.dist-info}/entry_points.txt +0 -0
  311. {qairt_visualizer-0.5.1.dist-info → qairt_visualizer-0.7.0.dist-info}/top_level.txt +0 -0
@@ -13646,8 +13646,8 @@
13646
13646
  },
13647
13647
  {
13648
13648
  "name": "DecodeImage",
13649
- "summary": "Function for decode_bmp, decode_gif, decode_jpeg, and decode_png.",
13650
- "description": "Detects whether an image is a BMP, GIF, JPEG, or PNG, and performs the\nappropriate operation to convert the input bytes string into a Tensor of type\ndtype.\n\n*NOTE*: decode_gif returns a 4-D array [num_frames, height, width, 3], as\nopposed to decode_bmp, decode_jpeg and decode_png, which return 3-D arrays\n[height, width, num_channels]. Make sure to take this into account when\nconstructing your graph if you are intermixing GIF files with BMP, JPEG, and/or\nPNG files. Alternately, set the expand_animations argument of this function to\nFalse, in which case the op will return 3-dimensional tensors and will truncate\nanimated GIF files to the first frame.\n\n*NOTE*: If the first frame of an animated GIF does not occupy the entire\ncanvas (maximum frame width x maximum frame height), then it fills the\nunoccupied areas (in the first frame) with zeros (black). For frames after the\nfirst frame that does not occupy the entire canvas, it uses the previous\nframe to fill the unoccupied areas.",
13649
+ "summary": "Function for decode_bmp, decode_gif, decode_jpeg, decode_webp, and decode_png.",
13650
+ "description": "Detects whether an image is a BMP, GIF, JPEG, WebP, or PNG, and performs the\nappropriate operation to convert the input bytes string into a Tensor of type\ndtype.\n\n*NOTE*: decode_gif and decode_webp return a 4-D\narray [num_frames, height, width, 3], as opposed to decode_bmp,\ndecode_jpeg, and decode_png, which always return 3-D arrays [height,\nwidth, num_channels]. Make sure to take this into account when\nconstructing your graph if you are intermixing animated files with\nBMP, JPEG, and/or PNG files. Alternately, set the expand_animations\nargument of this function to False, in which case the op will return\n3-dimensional tensors and will truncate animations to the first frame.\n\n*NOTE*: If the first frame of an animated GIF does not occupy the entire\ncanvas (maximum frame width x maximum frame height), then it fills the\nunoccupied areas (in the first frame) with zeros (black). For frames after the\nfirst frame that does not occupy the entire canvas, it uses the previous\nframe to fill the unoccupied areas.",
13651
13651
  "attributes": [
13652
13652
  {
13653
13653
  "name": "channels",
@@ -13667,7 +13667,7 @@
13667
13667
  {
13668
13668
  "name": "expand_animations",
13669
13669
  "type": "boolean",
13670
- "description": "Controls the output shape of the returned op. If True, the returned op will\nproduce a 3-D tensor for PNG, JPEG, and BMP files; and a 4-D tensor for all\nGIFs, whether animated or not. If, False, the returned op will produce a 3-D\ntensor for all file types and will truncate animated GIFs to the first frame.",
13670
+ "description": "Controls the output shape of the returned op. If True, the returned op\nwill produce a 3-D tensor for PNG, JPEG, and BMP files; and a 4-D\ntensor for all GIFs and WebP images, whether animated or not. If,\nFalse, the returned op will produce a 3-D tensor for all file types\nand will truncate animated images to the first frame.",
13671
13671
  "default": true
13672
13672
  }
13673
13673
  ],
@@ -13963,6 +13963,42 @@
13963
13963
  }
13964
13964
  ]
13965
13965
  },
13966
+ {
13967
+ "name": "DecodeWebP",
13968
+ "summary": "Decode a WebP-encoded image to a uint8 tensor.",
13969
+ "description": "The attr `channels` indicates the desired number of color channels for the\ndecoded image.\n\nAccepted values are:\n\n* 0: Use the number of channels in the WebP-encoded image.\n* 3: output an RGB image.\n* 4: output an RGBA image.\n\nThe number of channels must currently match that of the underlying file.\nFor WebP animations, only 4-channel RGBA is supported.",
13970
+ "attributes": [
13971
+ {
13972
+ "name": "channels",
13973
+ "type": "int64",
13974
+ "description": "Number of color channels for the decoded image.",
13975
+ "default": 0
13976
+ },
13977
+ {
13978
+ "name": "dtype",
13979
+ "type": "type",
13980
+ "description": "Must be one of the following: `uint8`.",
13981
+ "default": {
13982
+ "type": "type",
13983
+ "value": 4
13984
+ }
13985
+ }
13986
+ ],
13987
+ "inputs": [
13988
+ {
13989
+ "name": "contents",
13990
+ "description": "0-D. The WebP-encoded image.",
13991
+ "type": 7
13992
+ }
13993
+ ],
13994
+ "outputs": [
13995
+ {
13996
+ "name": "image",
13997
+ "description": "4-D with shape `[num_frames, height, width, channels]`.",
13998
+ "typeAttr": "dtype"
13999
+ }
14000
+ ]
14001
+ },
13966
14002
  {
13967
14003
  "name": "DeepCopy",
13968
14004
  "summary": "Makes a copy of `x`.",
@@ -22517,7 +22553,7 @@
22517
22553
  {
22518
22554
  "name": "Igamma",
22519
22555
  "summary": "Compute the lower regularized incomplete Gamma function `P(a, x)`.",
22520
- "description": "The lower regularized incomplete Gamma function is defined as:\n\n\n\\\\(P(a, x) = gamma(a, x) / Gamma(a) = 1 - Q(a, x)\\\\)\n\nwhere\n\n\\\\(gamma(a, x) = \\\\int_{0}^{x} t^{a-1} exp(-t) dt\\\\)\n\nis the lower incomplete Gamma function.\n\nNote, above `Q(a, x)` (`Igammac`) is the upper regularized complete\nGamma function.",
22556
+ "description": "The lower regularized incomplete Gamma function is defined as:\n\n\n\\\\(P(a, x) = gamma(a, x) / Gamma(a) = 1 - Q(a, x)\\\\)\n\nwhere\n\n\\\\(gamma(a, x) = \\int_{0}^{x} t^{a-1} exp(-t) dt\\\\)\n\nis the lower incomplete Gamma function.\n\nNote, above `Q(a, x)` (`Igammac`) is the upper regularized complete\nGamma function.",
22521
22557
  "attributes": [
22522
22558
  {
22523
22559
  "name": "T",
@@ -39496,7 +39532,7 @@
39496
39532
  {
39497
39533
  "name": "Tidx",
39498
39534
  "type": "type",
39499
- "description": "Must be one of the following: `bfloat16`, `float16`, `float32`, `float64`, `int8`, `int16`, `int32`, `int64`, `uint16`, `uint32`.",
39535
+ "description": "Must be one of the following: `bfloat16`, `float16`, `float32`, `float64`, `int8`, `int16`, `int32`, `int64`, `uint16`, `uint32`, `uint64`.",
39500
39536
  "default": {
39501
39537
  "type": "type",
39502
39538
  "value": 3
@@ -58359,6 +58395,29 @@
58359
58395
  }
58360
58396
  ]
58361
58397
  },
58398
+ {
58399
+ "name": "TPUDummyInput",
58400
+ "summary": "Generates a zero-valued tensor for use as a dummy input to a TPU.",
58401
+ "description": "For the internal use of the TF2XLA bridge in the XLA Broadcast pass. This op",
58402
+ "attributes": [
58403
+ {
58404
+ "name": "dtype",
58405
+ "type": "type",
58406
+ "description": "The element type of the produced tensor. Must be one of the following: `float32`, `bfloat16`."
58407
+ },
58408
+ {
58409
+ "name": "shape",
58410
+ "type": "shape",
58411
+ "description": "The shape of the produced tensor."
58412
+ }
58413
+ ],
58414
+ "outputs": [
58415
+ {
58416
+ "name": "output",
58417
+ "typeAttr": "dtype"
58418
+ }
58419
+ ]
58420
+ },
58362
58421
  {
58363
58422
  "name": "TPUEmbeddingActivations",
58364
58423
  "summary": "An op enabling differentiation of TPU Embeddings.",
@@ -58747,6 +58806,11 @@
58747
58806
  "type": "boolean",
58748
58807
  "default": false
58749
58808
  },
58809
+ {
58810
+ "name": "use_shardy_partitioner",
58811
+ "type": "boolean",
58812
+ "default": false
58813
+ },
58750
58814
  {
58751
58815
  "name": "tpu_compile_options_proto",
58752
58816
  "type": "string",
@@ -62584,7 +62648,7 @@
62584
62648
  {
62585
62649
  "name": "Tin",
62586
62650
  "type": "type",
62587
- "description": "The type of input Tensor. A tf.DType from: tf.float32 Must be one of the following: `qint8`, `qint32`."
62651
+ "description": "The type of input Tensor. A tf.DType from: tf.float32 Must be one of the following: `qint8`, `quint8`, `qint32`."
62588
62652
  },
62589
62653
  {
62590
62654
  "name": "Tout",
@@ -62646,7 +62710,7 @@
62646
62710
  {
62647
62711
  "name": "Tout",
62648
62712
  "type": "type",
62649
- "description": "The type of output Tensor. A tf.DType from: tf.float32 Must be one of the following: `qint8`, `qint32`."
62713
+ "description": "The type of output Tensor. A tf.DType from: tf.float32 Must be one of the following: `qint8`, `quint8`, `qint32`."
62650
62714
  },
62651
62715
  {
62652
62716
  "name": "quantization_axis",
@@ -65163,6 +65227,61 @@
65163
65227
  }
65164
65228
  ]
65165
65229
  },
65230
+ {
65231
+ "name": "XlaSparseActivationsUnstack",
65232
+ "attributes": [
65233
+ {
65234
+ "name": "num_tables",
65235
+ "type": "int64",
65236
+ "minimum": 1
65237
+ },
65238
+ {
65239
+ "name": "sample_counts",
65240
+ "type": "int64[]",
65241
+ "minimum": 1
65242
+ },
65243
+ {
65244
+ "name": "features",
65245
+ "type": "int64[]",
65246
+ "minimum": 1
65247
+ },
65248
+ {
65249
+ "name": "interleaved",
65250
+ "type": "boolean"
65251
+ },
65252
+ {
65253
+ "name": "input_dtype",
65254
+ "type": "type",
65255
+ "description": "Must be one of the following: `int32`, `float32`.",
65256
+ "default": {
65257
+ "type": "type",
65258
+ "value": 1
65259
+ }
65260
+ },
65261
+ {
65262
+ "name": "dtype",
65263
+ "type": "type",
65264
+ "description": "Must be one of the following: `int32`, `bfloat16`, `float32`.",
65265
+ "default": {
65266
+ "type": "type",
65267
+ "value": 1
65268
+ }
65269
+ }
65270
+ ],
65271
+ "inputs": [
65272
+ {
65273
+ "name": "stacked_activations",
65274
+ "typeAttr": "input_dtype"
65275
+ }
65276
+ ],
65277
+ "outputs": [
65278
+ {
65279
+ "name": "unstacked_activations",
65280
+ "numberAttr": "num_tables",
65281
+ "typeAttr": "dtype"
65282
+ }
65283
+ ]
65284
+ },
65166
65285
  {
65167
65286
  "name": "XlaSparseCoreAdagrad",
65168
65287
  "attributes": [
@@ -65505,7 +65624,7 @@
65505
65624
  ]
65506
65625
  },
65507
65626
  {
65508
- "name": "XlaSparseDenseMatmulGradWithAdagradAndCsrInput",
65627
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithAdagradAndCsrInput",
65509
65628
  "attributes": [
65510
65629
  {
65511
65630
  "name": "clip_weight_min",
@@ -65518,85 +65637,31 @@
65518
65637
  "default": "NaN"
65519
65638
  },
65520
65639
  {
65521
- "name": "table_name",
65522
- "type": "string"
65523
- }
65524
- ],
65525
- "inputs": [
65526
- {
65527
- "name": "row_pointers",
65528
- "type": 3
65529
- },
65530
- {
65531
- "name": "sorted_sample_ids",
65532
- "type": 3
65533
- },
65534
- {
65535
- "name": "sorted_token_ids",
65536
- "type": 3
65537
- },
65538
- {
65539
- "name": "sorted_gains",
65540
- "type": 1
65541
- },
65542
- {
65543
- "name": "activation_gradients",
65544
- "type": 1
65545
- },
65546
- {
65547
- "name": "learning_rate",
65548
- "type": 1
65549
- },
65550
- {
65551
- "name": "embedding_table",
65552
- "type": 1
65553
- },
65554
- {
65555
- "name": "accumulator",
65556
- "type": 1
65640
+ "name": "max_valency",
65641
+ "type": "int64",
65642
+ "minimum": 0
65557
65643
  },
65558
65644
  {
65559
- "name": "num_minibatches_per_physical_sparse_core",
65560
- "type": 3
65561
- }
65562
- ],
65563
- "outputs": [
65564
- {
65565
- "name": "updated_embedding_table",
65566
- "type": 1
65645
+ "name": "num_weights",
65646
+ "type": "int64",
65647
+ "minimum": 0
65567
65648
  },
65568
65649
  {
65569
- "name": "updated_accumulator",
65570
- "type": 1
65571
- }
65572
- ]
65573
- },
65574
- {
65575
- "name": "XlaSparseDenseMatmulGradWithAdagradAndStaticBufferSize",
65576
- "attributes": [
65577
- {
65578
- "name": "clip_weight_min",
65579
- "type": "float32",
65580
- "default": "-NaN"
65650
+ "name": "combiner_table_vjp_computation",
65651
+ "type": "function"
65581
65652
  },
65582
65653
  {
65583
- "name": "clip_weight_max",
65584
- "type": "float32",
65585
- "default": "NaN"
65654
+ "name": "combiner_weights_vjp_computation",
65655
+ "type": "function"
65586
65656
  },
65587
65657
  {
65588
- "name": "max_ids_per_sparse_core",
65589
- "type": "int64",
65590
- "minimum": 1
65658
+ "name": "table_name",
65659
+ "type": "string"
65591
65660
  },
65592
65661
  {
65593
- "name": "max_unique_ids_per_sparse_core",
65662
+ "name": "num_sparsecores_per_device",
65594
65663
  "type": "int64",
65595
- "minimum": 1
65596
- },
65597
- {
65598
- "name": "table_name",
65599
- "type": "string"
65664
+ "default": -1
65600
65665
  }
65601
65666
  ],
65602
65667
  "inputs": [
@@ -65613,94 +65678,27 @@
65613
65678
  "type": 3
65614
65679
  },
65615
65680
  {
65616
- "name": "sorted_gains",
65617
- "type": 1
65618
- },
65619
- {
65620
- "name": "activation_gradients",
65621
- "type": 1
65622
- },
65623
- {
65624
- "name": "learning_rate",
65625
- "type": 1
65681
+ "name": "sorted_pos_ids",
65682
+ "type": 3
65626
65683
  },
65627
65684
  {
65628
- "name": "embedding_table",
65685
+ "name": "sorted_gains",
65629
65686
  "type": 1
65630
65687
  },
65631
65688
  {
65632
- "name": "accumulator",
65689
+ "name": "weights",
65633
65690
  "type": 1
65634
65691
  },
65635
65692
  {
65636
- "name": "num_minibatches_per_physical_sparse_core",
65693
+ "name": "preserved_valencies",
65637
65694
  "type": 3
65638
- }
65639
- ],
65640
- "outputs": [
65641
- {
65642
- "name": "updated_embedding_table",
65643
- "type": 1
65644
65695
  },
65645
65696
  {
65646
- "name": "updated_accumulator",
65697
+ "name": "preserved_vectors",
65647
65698
  "type": 1
65648
- }
65649
- ]
65650
- },
65651
- {
65652
- "name": "XlaSparseDenseMatmulGradWithAdagradMomentumAndCsrInput",
65653
- "attributes": [
65654
- {
65655
- "name": "use_nesterov",
65656
- "type": "boolean"
65657
- },
65658
- {
65659
- "name": "exponent",
65660
- "type": "float32"
65661
- },
65662
- {
65663
- "name": "beta1",
65664
- "type": "float32"
65665
- },
65666
- {
65667
- "name": "beta2",
65668
- "type": "float32"
65669
- },
65670
- {
65671
- "name": "epsilon",
65672
- "type": "float32"
65673
- },
65674
- {
65675
- "name": "clip_weight_min",
65676
- "type": "float32",
65677
- "default": "-NaN"
65678
- },
65679
- {
65680
- "name": "clip_weight_max",
65681
- "type": "float32",
65682
- "default": "NaN"
65683
- },
65684
- {
65685
- "name": "table_name",
65686
- "type": "string"
65687
- }
65688
- ],
65689
- "inputs": [
65690
- {
65691
- "name": "row_pointers",
65692
- "type": 3
65693
- },
65694
- {
65695
- "name": "sorted_sample_ids",
65696
- "type": 3
65697
65699
  },
65698
65700
  {
65699
- "name": "sorted_token_ids",
65700
- "type": 3
65701
- },
65702
- {
65703
- "name": "sorted_gains",
65701
+ "name": "preserved_weights",
65704
65702
  "type": 1
65705
65703
  },
65706
65704
  {
@@ -65712,20 +65710,16 @@
65712
65710
  "type": 1
65713
65711
  },
65714
65712
  {
65715
- "name": "embedding_table",
65713
+ "name": "combiner_weights_learning_rate",
65716
65714
  "type": 1
65717
65715
  },
65718
65716
  {
65719
- "name": "accumulator",
65717
+ "name": "embedding_table",
65720
65718
  "type": 1
65721
65719
  },
65722
65720
  {
65723
- "name": "momenta",
65721
+ "name": "accumulator",
65724
65722
  "type": 1
65725
- },
65726
- {
65727
- "name": "num_minibatches_per_physical_sparse_core",
65728
- "type": 3
65729
65723
  }
65730
65724
  ],
65731
65725
  "outputs": [
@@ -65738,13 +65732,13 @@
65738
65732
  "type": 1
65739
65733
  },
65740
65734
  {
65741
- "name": "updated_momenta",
65735
+ "name": "updated_weights",
65742
65736
  "type": 1
65743
65737
  }
65744
65738
  ]
65745
65739
  },
65746
65740
  {
65747
- "name": "XlaSparseDenseMatmulGradWithAdagradMomentumAndStaticBufferSize",
65741
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithAdagradMomentumAndCsrInput",
65748
65742
  "attributes": [
65749
65743
  {
65750
65744
  "name": "use_nesterov",
@@ -65766,6 +65760,789 @@
65766
65760
  "name": "epsilon",
65767
65761
  "type": "float32"
65768
65762
  },
65763
+ {
65764
+ "name": "clip_weight_min",
65765
+ "type": "float32",
65766
+ "default": "-NaN"
65767
+ },
65768
+ {
65769
+ "name": "clip_weight_max",
65770
+ "type": "float32",
65771
+ "default": "NaN"
65772
+ },
65773
+ {
65774
+ "name": "max_valency",
65775
+ "type": "int64",
65776
+ "minimum": 0
65777
+ },
65778
+ {
65779
+ "name": "num_weights",
65780
+ "type": "int64",
65781
+ "minimum": 0
65782
+ },
65783
+ {
65784
+ "name": "combiner_table_vjp_computation",
65785
+ "type": "function"
65786
+ },
65787
+ {
65788
+ "name": "combiner_weights_vjp_computation",
65789
+ "type": "function"
65790
+ },
65791
+ {
65792
+ "name": "table_name",
65793
+ "type": "string"
65794
+ },
65795
+ {
65796
+ "name": "num_sparsecores_per_device",
65797
+ "type": "int64",
65798
+ "default": -1
65799
+ }
65800
+ ],
65801
+ "inputs": [
65802
+ {
65803
+ "name": "row_pointers",
65804
+ "type": 3
65805
+ },
65806
+ {
65807
+ "name": "sorted_sample_ids",
65808
+ "type": 3
65809
+ },
65810
+ {
65811
+ "name": "sorted_token_ids",
65812
+ "type": 3
65813
+ },
65814
+ {
65815
+ "name": "sorted_pos_ids",
65816
+ "type": 3
65817
+ },
65818
+ {
65819
+ "name": "sorted_gains",
65820
+ "type": 1
65821
+ },
65822
+ {
65823
+ "name": "weights",
65824
+ "type": 1
65825
+ },
65826
+ {
65827
+ "name": "preserved_valencies",
65828
+ "type": 3
65829
+ },
65830
+ {
65831
+ "name": "preserved_vectors",
65832
+ "type": 1
65833
+ },
65834
+ {
65835
+ "name": "preserved_weights",
65836
+ "type": 1
65837
+ },
65838
+ {
65839
+ "name": "activation_gradients",
65840
+ "type": 1
65841
+ },
65842
+ {
65843
+ "name": "learning_rate",
65844
+ "type": 1
65845
+ },
65846
+ {
65847
+ "name": "combiner_weights_learning_rate",
65848
+ "type": 1
65849
+ },
65850
+ {
65851
+ "name": "embedding_table",
65852
+ "type": 1
65853
+ },
65854
+ {
65855
+ "name": "accumulator",
65856
+ "type": 1
65857
+ },
65858
+ {
65859
+ "name": "momenta",
65860
+ "type": 1
65861
+ }
65862
+ ],
65863
+ "outputs": [
65864
+ {
65865
+ "name": "updated_embedding_table",
65866
+ "type": 1
65867
+ },
65868
+ {
65869
+ "name": "updated_accumulator",
65870
+ "type": 1
65871
+ },
65872
+ {
65873
+ "name": "updated_momenta",
65874
+ "type": 1
65875
+ },
65876
+ {
65877
+ "name": "updated_weights",
65878
+ "type": 1
65879
+ }
65880
+ ]
65881
+ },
65882
+ {
65883
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithAdamAndCsrInput",
65884
+ "attributes": [
65885
+ {
65886
+ "name": "use_sum_inside_sqrt",
65887
+ "type": "boolean"
65888
+ },
65889
+ {
65890
+ "name": "beta1",
65891
+ "type": "float32"
65892
+ },
65893
+ {
65894
+ "name": "beta2",
65895
+ "type": "float32"
65896
+ },
65897
+ {
65898
+ "name": "epsilon",
65899
+ "type": "float32"
65900
+ },
65901
+ {
65902
+ "name": "clip_weight_min",
65903
+ "type": "float32",
65904
+ "default": "-NaN"
65905
+ },
65906
+ {
65907
+ "name": "clip_weight_max",
65908
+ "type": "float32",
65909
+ "default": "NaN"
65910
+ },
65911
+ {
65912
+ "name": "max_valency",
65913
+ "type": "int64",
65914
+ "minimum": 0
65915
+ },
65916
+ {
65917
+ "name": "num_weights",
65918
+ "type": "int64",
65919
+ "minimum": 0
65920
+ },
65921
+ {
65922
+ "name": "combiner_table_vjp_computation",
65923
+ "type": "function"
65924
+ },
65925
+ {
65926
+ "name": "combiner_weights_vjp_computation",
65927
+ "type": "function"
65928
+ },
65929
+ {
65930
+ "name": "table_name",
65931
+ "type": "string"
65932
+ },
65933
+ {
65934
+ "name": "num_sparsecores_per_device",
65935
+ "type": "int64",
65936
+ "default": -1
65937
+ }
65938
+ ],
65939
+ "inputs": [
65940
+ {
65941
+ "name": "row_pointers",
65942
+ "type": 3
65943
+ },
65944
+ {
65945
+ "name": "sorted_sample_ids",
65946
+ "type": 3
65947
+ },
65948
+ {
65949
+ "name": "sorted_token_ids",
65950
+ "type": 3
65951
+ },
65952
+ {
65953
+ "name": "sorted_pos_ids",
65954
+ "type": 3
65955
+ },
65956
+ {
65957
+ "name": "sorted_gains",
65958
+ "type": 1
65959
+ },
65960
+ {
65961
+ "name": "weights",
65962
+ "type": 1
65963
+ },
65964
+ {
65965
+ "name": "preserved_valencies",
65966
+ "type": 3
65967
+ },
65968
+ {
65969
+ "name": "preserved_vectors",
65970
+ "type": 1
65971
+ },
65972
+ {
65973
+ "name": "preserved_weights",
65974
+ "type": 1
65975
+ },
65976
+ {
65977
+ "name": "activation_gradients",
65978
+ "type": 1
65979
+ },
65980
+ {
65981
+ "name": "learning_rate",
65982
+ "type": 1
65983
+ },
65984
+ {
65985
+ "name": "combiner_weights_learning_rate",
65986
+ "type": 1
65987
+ },
65988
+ {
65989
+ "name": "embedding_table",
65990
+ "type": 1
65991
+ },
65992
+ {
65993
+ "name": "momenta",
65994
+ "type": 1
65995
+ },
65996
+ {
65997
+ "name": "velocity",
65998
+ "type": 1
65999
+ }
66000
+ ],
66001
+ "outputs": [
66002
+ {
66003
+ "name": "updated_embedding_table",
66004
+ "type": 1
66005
+ },
66006
+ {
66007
+ "name": "updated_momenta",
66008
+ "type": 1
66009
+ },
66010
+ {
66011
+ "name": "updated_velocity",
66012
+ "type": 1
66013
+ },
66014
+ {
66015
+ "name": "updated_weights",
66016
+ "type": 1
66017
+ }
66018
+ ]
66019
+ },
66020
+ {
66021
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithCsrInput",
66022
+ "attributes": [
66023
+ {
66024
+ "name": "N",
66025
+ "type": "int64",
66026
+ "minimum": 1
66027
+ },
66028
+ {
66029
+ "name": "M",
66030
+ "type": "int64",
66031
+ "minimum": 1
66032
+ },
66033
+ {
66034
+ "name": "max_valency",
66035
+ "type": "int64",
66036
+ "minimum": 0
66037
+ },
66038
+ {
66039
+ "name": "num_weights",
66040
+ "type": "int64",
66041
+ "minimum": 0
66042
+ },
66043
+ {
66044
+ "name": "combiner_table_vjp_computation",
66045
+ "type": "function"
66046
+ },
66047
+ {
66048
+ "name": "combiner_weights_vjp_computation",
66049
+ "type": "function"
66050
+ },
66051
+ {
66052
+ "name": "optimizer_custom_computation",
66053
+ "type": "function"
66054
+ },
66055
+ {
66056
+ "name": "table_name",
66057
+ "type": "string"
66058
+ },
66059
+ {
66060
+ "name": "num_sparsecores_per_device",
66061
+ "type": "int64",
66062
+ "default": -1
66063
+ }
66064
+ ],
66065
+ "inputs": [
66066
+ {
66067
+ "name": "row_pointers",
66068
+ "type": 3
66069
+ },
66070
+ {
66071
+ "name": "sorted_sample_ids",
66072
+ "type": 3
66073
+ },
66074
+ {
66075
+ "name": "sorted_token_ids",
66076
+ "type": 3
66077
+ },
66078
+ {
66079
+ "name": "sorted_pos_ids",
66080
+ "type": 3
66081
+ },
66082
+ {
66083
+ "name": "sorted_gains",
66084
+ "type": 1
66085
+ },
66086
+ {
66087
+ "name": "weights",
66088
+ "type": 1
66089
+ },
66090
+ {
66091
+ "name": "preserved_valencies",
66092
+ "type": 3
66093
+ },
66094
+ {
66095
+ "name": "preserved_vectors",
66096
+ "type": 1
66097
+ },
66098
+ {
66099
+ "name": "preserved_weights",
66100
+ "type": 1
66101
+ },
66102
+ {
66103
+ "name": "activation_gradients",
66104
+ "type": 1
66105
+ },
66106
+ {
66107
+ "name": "tables",
66108
+ "numberAttr": "N",
66109
+ "type": 1
66110
+ },
66111
+ {
66112
+ "name": "hyperparameters",
66113
+ "numberAttr": "M",
66114
+ "type": 1
66115
+ },
66116
+ {
66117
+ "name": "combiner_weights_learning_rate",
66118
+ "type": 1
66119
+ }
66120
+ ],
66121
+ "outputs": [
66122
+ {
66123
+ "name": "updated_tables",
66124
+ "numberAttr": "N",
66125
+ "type": 1
66126
+ },
66127
+ {
66128
+ "name": "updated_weights",
66129
+ "type": 1
66130
+ }
66131
+ ]
66132
+ },
66133
+ {
66134
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithFtrlAndCsrInput",
66135
+ "attributes": [
66136
+ {
66137
+ "name": "multiply_linear_by_learning_rate",
66138
+ "type": "boolean"
66139
+ },
66140
+ {
66141
+ "name": "beta",
66142
+ "type": "float32"
66143
+ },
66144
+ {
66145
+ "name": "learning_rate_power",
66146
+ "type": "float32"
66147
+ },
66148
+ {
66149
+ "name": "l1_regularization_strength",
66150
+ "type": "float32"
66151
+ },
66152
+ {
66153
+ "name": "l2_regularization_strength",
66154
+ "type": "float32"
66155
+ },
66156
+ {
66157
+ "name": "clip_weight_min",
66158
+ "type": "float32",
66159
+ "default": "-NaN"
66160
+ },
66161
+ {
66162
+ "name": "clip_weight_max",
66163
+ "type": "float32",
66164
+ "default": "NaN"
66165
+ },
66166
+ {
66167
+ "name": "max_valency",
66168
+ "type": "int64",
66169
+ "minimum": 0
66170
+ },
66171
+ {
66172
+ "name": "num_weights",
66173
+ "type": "int64",
66174
+ "minimum": 0
66175
+ },
66176
+ {
66177
+ "name": "combiner_table_vjp_computation",
66178
+ "type": "function"
66179
+ },
66180
+ {
66181
+ "name": "combiner_weights_vjp_computation",
66182
+ "type": "function"
66183
+ },
66184
+ {
66185
+ "name": "table_name",
66186
+ "type": "string"
66187
+ },
66188
+ {
66189
+ "name": "num_sparsecores_per_device",
66190
+ "type": "int64",
66191
+ "default": -1
66192
+ }
66193
+ ],
66194
+ "inputs": [
66195
+ {
66196
+ "name": "row_pointers",
66197
+ "type": 3
66198
+ },
66199
+ {
66200
+ "name": "sorted_sample_ids",
66201
+ "type": 3
66202
+ },
66203
+ {
66204
+ "name": "sorted_token_ids",
66205
+ "type": 3
66206
+ },
66207
+ {
66208
+ "name": "sorted_pos_ids",
66209
+ "type": 3
66210
+ },
66211
+ {
66212
+ "name": "sorted_gains",
66213
+ "type": 1
66214
+ },
66215
+ {
66216
+ "name": "weights",
66217
+ "type": 1
66218
+ },
66219
+ {
66220
+ "name": "preserved_valencies",
66221
+ "type": 3
66222
+ },
66223
+ {
66224
+ "name": "preserved_vectors",
66225
+ "type": 1
66226
+ },
66227
+ {
66228
+ "name": "preserved_weights",
66229
+ "type": 1
66230
+ },
66231
+ {
66232
+ "name": "activation_gradients",
66233
+ "type": 1
66234
+ },
66235
+ {
66236
+ "name": "learning_rate",
66237
+ "type": 1
66238
+ },
66239
+ {
66240
+ "name": "combiner_weights_learning_rate",
66241
+ "type": 1
66242
+ },
66243
+ {
66244
+ "name": "embedding_table",
66245
+ "type": 1
66246
+ },
66247
+ {
66248
+ "name": "accumulator",
66249
+ "type": 1
66250
+ },
66251
+ {
66252
+ "name": "linear",
66253
+ "type": 1
66254
+ }
66255
+ ],
66256
+ "outputs": [
66257
+ {
66258
+ "name": "updated_embedding_table",
66259
+ "type": 1
66260
+ },
66261
+ {
66262
+ "name": "updated_accumulator",
66263
+ "type": 1
66264
+ },
66265
+ {
66266
+ "name": "updated_linear",
66267
+ "type": 1
66268
+ },
66269
+ {
66270
+ "name": "updated_weights",
66271
+ "type": 1
66272
+ }
66273
+ ]
66274
+ },
66275
+ {
66276
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcGradWithSgdAndCsrInput",
66277
+ "attributes": [
66278
+ {
66279
+ "name": "clip_weight_min",
66280
+ "type": "float32",
66281
+ "default": "-NaN"
66282
+ },
66283
+ {
66284
+ "name": "clip_weight_max",
66285
+ "type": "float32",
66286
+ "default": "NaN"
66287
+ },
66288
+ {
66289
+ "name": "max_valency",
66290
+ "type": "int64",
66291
+ "minimum": 0
66292
+ },
66293
+ {
66294
+ "name": "num_weights",
66295
+ "type": "int64",
66296
+ "minimum": 0
66297
+ },
66298
+ {
66299
+ "name": "combiner_table_vjp_computation",
66300
+ "type": "function"
66301
+ },
66302
+ {
66303
+ "name": "combiner_weights_vjp_computation",
66304
+ "type": "function"
66305
+ },
66306
+ {
66307
+ "name": "table_name",
66308
+ "type": "string"
66309
+ },
66310
+ {
66311
+ "name": "num_sparsecores_per_device",
66312
+ "type": "int64",
66313
+ "default": -1
66314
+ }
66315
+ ],
66316
+ "inputs": [
66317
+ {
66318
+ "name": "row_pointers",
66319
+ "type": 3
66320
+ },
66321
+ {
66322
+ "name": "sorted_sample_ids",
66323
+ "type": 3
66324
+ },
66325
+ {
66326
+ "name": "sorted_token_ids",
66327
+ "type": 3
66328
+ },
66329
+ {
66330
+ "name": "sorted_pos_ids",
66331
+ "type": 3
66332
+ },
66333
+ {
66334
+ "name": "sorted_gains",
66335
+ "type": 1
66336
+ },
66337
+ {
66338
+ "name": "weights",
66339
+ "type": 1
66340
+ },
66341
+ {
66342
+ "name": "preserved_valencies",
66343
+ "type": 3
66344
+ },
66345
+ {
66346
+ "name": "preserved_vectors",
66347
+ "type": 1
66348
+ },
66349
+ {
66350
+ "name": "preserved_weights",
66351
+ "type": 1
66352
+ },
66353
+ {
66354
+ "name": "activation_gradients",
66355
+ "type": 1
66356
+ },
66357
+ {
66358
+ "name": "learning_rate",
66359
+ "type": 1
66360
+ },
66361
+ {
66362
+ "name": "combiner_weights_learning_rate",
66363
+ "type": 1
66364
+ },
66365
+ {
66366
+ "name": "embedding_table",
66367
+ "type": 1
66368
+ }
66369
+ ],
66370
+ "outputs": [
66371
+ {
66372
+ "name": "updated_embedding_table",
66373
+ "type": 1
66374
+ },
66375
+ {
66376
+ "name": "updated_weights",
66377
+ "type": 1
66378
+ }
66379
+ ]
66380
+ },
66381
+ {
66382
+ "name": "XlaSparseDenseMatmulCustomCombinerOnTcWithCsrInput",
66383
+ "attributes": [
66384
+ {
66385
+ "name": "input_size",
66386
+ "type": "int64",
66387
+ "minimum": 0
66388
+ },
66389
+ {
66390
+ "name": "max_valency",
66391
+ "type": "int64",
66392
+ "minimum": 0
66393
+ },
66394
+ {
66395
+ "name": "num_weights",
66396
+ "type": "int64",
66397
+ "minimum": 0
66398
+ },
66399
+ {
66400
+ "name": "combiner_computation",
66401
+ "type": "function"
66402
+ },
66403
+ {
66404
+ "name": "quantization_config_low",
66405
+ "type": "float32"
66406
+ },
66407
+ {
66408
+ "name": "quantization_config_high",
66409
+ "type": "float32"
66410
+ },
66411
+ {
66412
+ "name": "quantization_config_num_buckets",
66413
+ "type": "int64",
66414
+ "minimum": 0
66415
+ },
66416
+ {
66417
+ "name": "table_name",
66418
+ "type": "string"
66419
+ },
66420
+ {
66421
+ "name": "num_sparsecores_per_device",
66422
+ "type": "int64",
66423
+ "default": -1
66424
+ }
66425
+ ],
66426
+ "inputs": [
66427
+ {
66428
+ "name": "row_pointers",
66429
+ "type": 3
66430
+ },
66431
+ {
66432
+ "name": "sorted_sample_ids",
66433
+ "type": 3
66434
+ },
66435
+ {
66436
+ "name": "sorted_token_ids",
66437
+ "type": 3
66438
+ },
66439
+ {
66440
+ "name": "sorted_pos_ids",
66441
+ "type": 3
66442
+ },
66443
+ {
66444
+ "name": "sorted_gains",
66445
+ "type": 1
66446
+ },
66447
+ {
66448
+ "name": "embedding_table",
66449
+ "type": 1
66450
+ },
66451
+ {
66452
+ "name": "weights",
66453
+ "type": 1
66454
+ }
66455
+ ],
66456
+ "outputs": [
66457
+ {
66458
+ "name": "activations",
66459
+ "type": 1
66460
+ },
66461
+ {
66462
+ "name": "preserved_valencies",
66463
+ "type": 3
66464
+ },
66465
+ {
66466
+ "name": "preserved_vectors",
66467
+ "type": 1
66468
+ }
66469
+ ]
66470
+ },
66471
+ {
66472
+ "name": "XlaSparseDenseMatmulGradWithAdagradAndCsrInput",
66473
+ "attributes": [
66474
+ {
66475
+ "name": "clip_weight_min",
66476
+ "type": "float32",
66477
+ "default": "-NaN"
66478
+ },
66479
+ {
66480
+ "name": "clip_weight_max",
66481
+ "type": "float32",
66482
+ "default": "NaN"
66483
+ },
66484
+ {
66485
+ "name": "table_name",
66486
+ "type": "string"
66487
+ },
66488
+ {
66489
+ "name": "num_sparsecores_per_device",
66490
+ "type": "int64",
66491
+ "default": -1
66492
+ }
66493
+ ],
66494
+ "inputs": [
66495
+ {
66496
+ "name": "row_pointers",
66497
+ "type": 3
66498
+ },
66499
+ {
66500
+ "name": "sorted_sample_ids",
66501
+ "type": 3
66502
+ },
66503
+ {
66504
+ "name": "sorted_token_ids",
66505
+ "type": 3
66506
+ },
66507
+ {
66508
+ "name": "sorted_gains",
66509
+ "type": 1
66510
+ },
66511
+ {
66512
+ "name": "activation_gradients",
66513
+ "type": 1
66514
+ },
66515
+ {
66516
+ "name": "learning_rate",
66517
+ "type": 1
66518
+ },
66519
+ {
66520
+ "name": "embedding_table",
66521
+ "type": 1
66522
+ },
66523
+ {
66524
+ "name": "accumulator",
66525
+ "type": 1
66526
+ },
66527
+ {
66528
+ "name": "num_minibatches_per_physical_sparse_core",
66529
+ "type": 3
66530
+ }
66531
+ ],
66532
+ "outputs": [
66533
+ {
66534
+ "name": "updated_embedding_table",
66535
+ "type": 1
66536
+ },
66537
+ {
66538
+ "name": "updated_accumulator",
66539
+ "type": 1
66540
+ }
66541
+ ]
66542
+ },
66543
+ {
66544
+ "name": "XlaSparseDenseMatmulGradWithAdagradAndStaticBufferSize",
66545
+ "attributes": [
65769
66546
  {
65770
66547
  "name": "clip_weight_min",
65771
66548
  "type": "float32",
@@ -65789,6 +66566,213 @@
65789
66566
  {
65790
66567
  "name": "table_name",
65791
66568
  "type": "string"
66569
+ },
66570
+ {
66571
+ "name": "num_sparsecores_per_device",
66572
+ "type": "int64",
66573
+ "default": -1
66574
+ }
66575
+ ],
66576
+ "inputs": [
66577
+ {
66578
+ "name": "row_pointers",
66579
+ "type": 3
66580
+ },
66581
+ {
66582
+ "name": "sorted_sample_ids",
66583
+ "type": 3
66584
+ },
66585
+ {
66586
+ "name": "sorted_token_ids",
66587
+ "type": 3
66588
+ },
66589
+ {
66590
+ "name": "sorted_gains",
66591
+ "type": 1
66592
+ },
66593
+ {
66594
+ "name": "activation_gradients",
66595
+ "type": 1
66596
+ },
66597
+ {
66598
+ "name": "learning_rate",
66599
+ "type": 1
66600
+ },
66601
+ {
66602
+ "name": "embedding_table",
66603
+ "type": 1
66604
+ },
66605
+ {
66606
+ "name": "accumulator",
66607
+ "type": 1
66608
+ },
66609
+ {
66610
+ "name": "num_minibatches_per_physical_sparse_core",
66611
+ "type": 3
66612
+ }
66613
+ ],
66614
+ "outputs": [
66615
+ {
66616
+ "name": "updated_embedding_table",
66617
+ "type": 1
66618
+ },
66619
+ {
66620
+ "name": "updated_accumulator",
66621
+ "type": 1
66622
+ }
66623
+ ]
66624
+ },
66625
+ {
66626
+ "name": "XlaSparseDenseMatmulGradWithAdagradMomentumAndCsrInput",
66627
+ "attributes": [
66628
+ {
66629
+ "name": "use_nesterov",
66630
+ "type": "boolean"
66631
+ },
66632
+ {
66633
+ "name": "exponent",
66634
+ "type": "float32"
66635
+ },
66636
+ {
66637
+ "name": "beta1",
66638
+ "type": "float32"
66639
+ },
66640
+ {
66641
+ "name": "beta2",
66642
+ "type": "float32"
66643
+ },
66644
+ {
66645
+ "name": "epsilon",
66646
+ "type": "float32"
66647
+ },
66648
+ {
66649
+ "name": "clip_weight_min",
66650
+ "type": "float32",
66651
+ "default": "-NaN"
66652
+ },
66653
+ {
66654
+ "name": "clip_weight_max",
66655
+ "type": "float32",
66656
+ "default": "NaN"
66657
+ },
66658
+ {
66659
+ "name": "table_name",
66660
+ "type": "string"
66661
+ },
66662
+ {
66663
+ "name": "num_sparsecores_per_device",
66664
+ "type": "int64",
66665
+ "default": -1
66666
+ }
66667
+ ],
66668
+ "inputs": [
66669
+ {
66670
+ "name": "row_pointers",
66671
+ "type": 3
66672
+ },
66673
+ {
66674
+ "name": "sorted_sample_ids",
66675
+ "type": 3
66676
+ },
66677
+ {
66678
+ "name": "sorted_token_ids",
66679
+ "type": 3
66680
+ },
66681
+ {
66682
+ "name": "sorted_gains",
66683
+ "type": 1
66684
+ },
66685
+ {
66686
+ "name": "activation_gradients",
66687
+ "type": 1
66688
+ },
66689
+ {
66690
+ "name": "learning_rate",
66691
+ "type": 1
66692
+ },
66693
+ {
66694
+ "name": "embedding_table",
66695
+ "type": 1
66696
+ },
66697
+ {
66698
+ "name": "accumulator",
66699
+ "type": 1
66700
+ },
66701
+ {
66702
+ "name": "momenta",
66703
+ "type": 1
66704
+ },
66705
+ {
66706
+ "name": "num_minibatches_per_physical_sparse_core",
66707
+ "type": 3
66708
+ }
66709
+ ],
66710
+ "outputs": [
66711
+ {
66712
+ "name": "updated_embedding_table",
66713
+ "type": 1
66714
+ },
66715
+ {
66716
+ "name": "updated_accumulator",
66717
+ "type": 1
66718
+ },
66719
+ {
66720
+ "name": "updated_momenta",
66721
+ "type": 1
66722
+ }
66723
+ ]
66724
+ },
66725
+ {
66726
+ "name": "XlaSparseDenseMatmulGradWithAdagradMomentumAndStaticBufferSize",
66727
+ "attributes": [
66728
+ {
66729
+ "name": "use_nesterov",
66730
+ "type": "boolean"
66731
+ },
66732
+ {
66733
+ "name": "exponent",
66734
+ "type": "float32"
66735
+ },
66736
+ {
66737
+ "name": "beta1",
66738
+ "type": "float32"
66739
+ },
66740
+ {
66741
+ "name": "beta2",
66742
+ "type": "float32"
66743
+ },
66744
+ {
66745
+ "name": "epsilon",
66746
+ "type": "float32"
66747
+ },
66748
+ {
66749
+ "name": "clip_weight_min",
66750
+ "type": "float32",
66751
+ "default": "-NaN"
66752
+ },
66753
+ {
66754
+ "name": "clip_weight_max",
66755
+ "type": "float32",
66756
+ "default": "NaN"
66757
+ },
66758
+ {
66759
+ "name": "max_ids_per_sparse_core",
66760
+ "type": "int64",
66761
+ "minimum": 1
66762
+ },
66763
+ {
66764
+ "name": "max_unique_ids_per_sparse_core",
66765
+ "type": "int64",
66766
+ "minimum": 1
66767
+ },
66768
+ {
66769
+ "name": "table_name",
66770
+ "type": "string"
66771
+ },
66772
+ {
66773
+ "name": "num_sparsecores_per_device",
66774
+ "type": "int64",
66775
+ "default": -1
65792
66776
  }
65793
66777
  ],
65794
66778
  "inputs": [
@@ -65880,6 +66864,11 @@
65880
66864
  {
65881
66865
  "name": "table_name",
65882
66866
  "type": "string"
66867
+ },
66868
+ {
66869
+ "name": "num_sparsecores_per_device",
66870
+ "type": "int64",
66871
+ "default": -1
65883
66872
  }
65884
66873
  ],
65885
66874
  "inputs": [
@@ -65981,6 +66970,11 @@
65981
66970
  {
65982
66971
  "name": "table_name",
65983
66972
  "type": "string"
66973
+ },
66974
+ {
66975
+ "name": "num_sparsecores_per_device",
66976
+ "type": "int64",
66977
+ "default": -1
65984
66978
  }
65985
66979
  ],
65986
66980
  "inputs": [
@@ -66060,6 +67054,20 @@
66060
67054
  {
66061
67055
  "name": "table_name",
66062
67056
  "type": "string"
67057
+ },
67058
+ {
67059
+ "name": "num_sparsecores_per_device",
67060
+ "type": "int64",
67061
+ "default": -1
67062
+ },
67063
+ {
67064
+ "name": "T",
67065
+ "type": "type",
67066
+ "description": "Must be one of the following: `int32`, `float32`.",
67067
+ "default": {
67068
+ "type": "type",
67069
+ "value": 1
67070
+ }
66063
67071
  }
66064
67072
  ],
66065
67073
  "inputs": [
@@ -66086,7 +67094,7 @@
66086
67094
  {
66087
67095
  "name": "tables",
66088
67096
  "numberAttr": "N",
66089
- "type": 1
67097
+ "typeAttr": "T"
66090
67098
  },
66091
67099
  {
66092
67100
  "name": "hyperparameters",
@@ -66102,7 +67110,7 @@
66102
67110
  {
66103
67111
  "name": "updated_tables",
66104
67112
  "numberAttr": "N",
66105
- "type": 1
67113
+ "typeAttr": "T"
66106
67114
  }
66107
67115
  ]
66108
67116
  },
@@ -66142,6 +67150,11 @@
66142
67150
  {
66143
67151
  "name": "table_name",
66144
67152
  "type": "string"
67153
+ },
67154
+ {
67155
+ "name": "num_sparsecores_per_device",
67156
+ "type": "int64",
67157
+ "default": -1
66145
67158
  }
66146
67159
  ],
66147
67160
  "inputs": [
@@ -66247,6 +67260,11 @@
66247
67260
  {
66248
67261
  "name": "table_name",
66249
67262
  "type": "string"
67263
+ },
67264
+ {
67265
+ "name": "num_sparsecores_per_device",
67266
+ "type": "int64",
67267
+ "default": -1
66250
67268
  }
66251
67269
  ],
66252
67270
  "inputs": [
@@ -66322,6 +67340,11 @@
66322
67340
  {
66323
67341
  "name": "table_name",
66324
67342
  "type": "string"
67343
+ },
67344
+ {
67345
+ "name": "num_sparsecores_per_device",
67346
+ "type": "int64",
67347
+ "default": -1
66325
67348
  }
66326
67349
  ],
66327
67350
  "inputs": [
@@ -66391,6 +67414,11 @@
66391
67414
  {
66392
67415
  "name": "table_name",
66393
67416
  "type": "string"
67417
+ },
67418
+ {
67419
+ "name": "num_sparsecores_per_device",
67420
+ "type": "int64",
67421
+ "default": -1
66394
67422
  }
66395
67423
  ],
66396
67424
  "inputs": [
@@ -66458,6 +67486,20 @@
66458
67486
  {
66459
67487
  "name": "table_name",
66460
67488
  "type": "string"
67489
+ },
67490
+ {
67491
+ "name": "num_sparsecores_per_device",
67492
+ "type": "int64",
67493
+ "default": -1
67494
+ },
67495
+ {
67496
+ "name": "T",
67497
+ "type": "type",
67498
+ "description": "Must be one of the following: `int32`, `float32`.",
67499
+ "default": {
67500
+ "type": "type",
67501
+ "value": 1
67502
+ }
66461
67503
  }
66462
67504
  ],
66463
67505
  "inputs": [
@@ -66479,7 +67521,7 @@
66479
67521
  },
66480
67522
  {
66481
67523
  "name": "embedding_table",
66482
- "type": 1
67524
+ "typeAttr": "T"
66483
67525
  },
66484
67526
  {
66485
67527
  "name": "num_minibatches_per_physical_sparse_core",
@@ -66489,7 +67531,7 @@
66489
67531
  "outputs": [
66490
67532
  {
66491
67533
  "name": "activations",
66492
- "type": 1
67534
+ "typeAttr": "T"
66493
67535
  }
66494
67536
  ]
66495
67537
  },
@@ -66527,6 +67569,11 @@
66527
67569
  {
66528
67570
  "name": "table_name",
66529
67571
  "type": "string"
67572
+ },
67573
+ {
67574
+ "name": "num_sparsecores_per_device",
67575
+ "type": "int64",
67576
+ "default": -1
66530
67577
  }
66531
67578
  ],
66532
67579
  "inputs": [
@@ -66562,6 +67609,51 @@
66562
67609
  }
66563
67610
  ]
66564
67611
  },
67612
+ {
67613
+ "name": "XlaSparseGradientsStack",
67614
+ "attributes": [
67615
+ {
67616
+ "name": "num_tables",
67617
+ "type": "int64",
67618
+ "minimum": 1
67619
+ },
67620
+ {
67621
+ "name": "interleaved",
67622
+ "type": "boolean"
67623
+ },
67624
+ {
67625
+ "name": "input_dtype",
67626
+ "type": "type",
67627
+ "description": "Must be one of the following: `int32`, `bfloat16`, `float32`.",
67628
+ "default": {
67629
+ "type": "type",
67630
+ "value": 1
67631
+ }
67632
+ },
67633
+ {
67634
+ "name": "dtype",
67635
+ "type": "type",
67636
+ "description": "Must be one of the following: `int32`, `float32`.",
67637
+ "default": {
67638
+ "type": "type",
67639
+ "value": 1
67640
+ }
67641
+ }
67642
+ ],
67643
+ "inputs": [
67644
+ {
67645
+ "name": "unstacked_gradients",
67646
+ "numberAttr": "num_tables",
67647
+ "typeAttr": "input_dtype"
67648
+ }
67649
+ ],
67650
+ "outputs": [
67651
+ {
67652
+ "name": "stacked_gradients",
67653
+ "typeAttr": "dtype"
67654
+ }
67655
+ ]
67656
+ },
66565
67657
  {
66566
67658
  "name": "XlaSplitND",
66567
67659
  "summary": "Splits input tensor across all dimensions.",