diff --git a/.gitignore b/.gitignore index 3f931222..7a8c4164 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ __pycache__ training/* scripts/_nohup .rsync-filter +.DS_Store +launch.json \ No newline at end of file diff --git a/model_checkpoints/model_18.onnx b/model_checkpoints/model_18.onnx new file mode 100644 index 00000000..945b0789 Binary files /dev/null and b/model_checkpoints/model_18.onnx differ diff --git a/model_checkpoints/model_18.pkl b/model_checkpoints/model_18.pkl new file mode 100644 index 00000000..0b02573a Binary files /dev/null and b/model_checkpoints/model_18.pkl differ diff --git a/model_checkpoints/model_18_optimized.onnx b/model_checkpoints/model_18_optimized.onnx new file mode 100644 index 00000000..59390e82 Binary files /dev/null and b/model_checkpoints/model_18_optimized.onnx differ diff --git a/model_train_onnx.ipynb b/model_train_onnx.ipynb new file mode 100644 index 00000000..4d82a07f --- /dev/null +++ b/model_train_onnx.ipynb @@ -0,0 +1,464 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pickle \n", + "from datetime import datetime\n", + "\n", + "import numpy as np \n", + "import pandas as pd \n", + "# import matplotlib.pyplot as plt\n", + "\n", + "from ts2vec import TS2Vec\n", + "import torch\n", + "from torch import nn\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Model traing parameters \n", + "OUTPUT_DIMS = 320 \n", + "TEMPORAL_UNIT = 2 \n", + "BATCH_SIZE = 128\n", + "N_EPOCHS = 2\n", + "HIDDEN_DIMS = 64\n", + "KERNEL_SIZE = 3\n", + "SAVE_CHECK_POINT = False" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Model training (only for onnx testing)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(10, 900, 8) (10, 2)\n", + "(4, 900, 8) (4, 2)\n" + ] + } + ], + "source": [ + "# load train data \n", + "train_data_dir = \"/Users/fguo/cmt/ts2vec/sample_data/train_data_sample10.npy\"\n", + "train_motion_names_dir = \"/Users/fguo/cmt/ts2vec/sample_data/train_motion_names_sample10.parquet\"\n", + "train_data = np.load(train_data_dir)\n", + "train_motion_names = pd.read_parquet(train_motion_names_dir)\n", + "print(train_data.shape, train_motion_names.shape)\n", + "\n", + "# load val data \n", + "val_data_dir = \"/Users/fguo/cmt/ts2vec/sample_data/val_data_sample4.npy\"\n", + "val_motion_names_dir = \"/Users/fguo/cmt/ts2vec/sample_data/val_motion_names_sample4.parquet\"\n", + "val_data = np.load(val_data_dir)\n", + "val_motion_names = pd.read_parquet(val_motion_names_dir)\n", + "print(val_data.shape, val_motion_names.shape)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Epoch #0: train loss=39.84284973144531\n", + "Epoch #0: val loss=18.48442268371582\n", + " \n", + "Epoch #1: train loss=26.8051815032959\n", + "Epoch #1: val loss=12.734784126281738\n", + " \n" + ] + } + ], + "source": [ + "model = TS2Vec(\n", + " input_dims=train_data.shape[-1],\n", + " device='cpu', \n", + " output_dims=OUTPUT_DIMS,\n", + " hidden_dims=HIDDEN_DIMS, \n", + " temporal_unit=TEMPORAL_UNIT,\n", + " batch_size=BATCH_SIZE,\n", + " after_epoch_callback=None\n", + ")\n", + "loss_log = model.fit(\n", + " train_data,\n", + " val_data,\n", + " verbose=True, \n", + " n_epochs=N_EPOCHS, \n", + " )" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "model.save(\"/Users/fguo/cmt/ts2vec/model_checkpoints/sample_model.pkl\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 2. Load model & ONNX" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# ts2vec model\n", + "# model_run_id: 07406a4af7284df0b8d8f266509161e8\n", + "# epoch: 18, model_18" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "model = TS2Vec(\n", + " input_dims=8,\n", + " device='cpu', \n", + " output_dims=OUTPUT_DIMS,\n", + " hidden_dims=HIDDEN_DIMS, \n", + " temporal_unit=TEMPORAL_UNIT,\n", + " batch_size=BATCH_SIZE,\n", + " after_epoch_callback=None\n", + ")\n", + "\n", + "model.load(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.pkl\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "AveragedModel(\n", + " (module): TSEncoder(\n", + " (input_fc): Linear(in_features=8, out_features=64, bias=True)\n", + " (feature_extractor): DilatedConvEncoder(\n", + " (net): Sequential(\n", + " (0): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(1,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(1,))\n", + " )\n", + " )\n", + " (1): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(2,), dilation=(2,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(2,), dilation=(2,))\n", + " )\n", + " )\n", + " (2): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(4,), dilation=(4,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(4,), dilation=(4,))\n", + " )\n", + " )\n", + " (3): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(8,), dilation=(8,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(8,), dilation=(8,))\n", + " )\n", + " )\n", + " (4): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(16,), dilation=(16,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(16,), dilation=(16,))\n", + " )\n", + " )\n", + " (5): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(32,), dilation=(32,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(32,), dilation=(32,))\n", + " )\n", + " )\n", + " (6): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(64,), dilation=(64,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(64,), dilation=(64,))\n", + " )\n", + " )\n", + " (7): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(128,), dilation=(128,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(128,), dilation=(128,))\n", + " )\n", + " )\n", + " (8): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(256,), dilation=(256,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(256,), dilation=(256,))\n", + " )\n", + " )\n", + " (9): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(512,), dilation=(512,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(64, 64, kernel_size=(3,), stride=(1,), padding=(512,), dilation=(512,))\n", + " )\n", + " )\n", + " (10): ConvBlock(\n", + " (conv1): SamePadConv(\n", + " (conv): Conv1d(64, 320, kernel_size=(3,), stride=(1,), padding=(1024,), dilation=(1024,))\n", + " )\n", + " (conv2): SamePadConv(\n", + " (conv): Conv1d(320, 320, kernel_size=(3,), stride=(1,), padding=(1024,), dilation=(1024,))\n", + " )\n", + " (projector): Conv1d(64, 320, kernel_size=(1,), stride=(1,))\n", + " )\n", + " )\n", + " )\n", + " (repr_dropout): Dropout(p=0.1, inplace=False)\n", + " )\n", + ")" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model.net.eval()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "model.net.training" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/fguo/.pyenv/versions/3.10.13/envs/ts2vec_0/lib/python3.10/site-packages/torch/onnx/_internal/exporter.py:137: UserWarning: torch.onnx.dynamo_export only implements opset version 18 for now. If you need to use a different opset version, please register them with register_custom_op.\n", + " warnings.warn(\n" + ] + } + ], + "source": [ + "dummy_input = torch.randn(1, 1, 8, device=\"cpu\")\n", + "onnx_program = torch.onnx.dynamo_export(model.net, dummy_input)\n", + "onnx_program.save(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 3. Load Onnx model and evaluation " + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import onnxruntime as ort " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[0;93m2024-03-28 09:06:52.501937 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501953 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501957 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501961 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501965 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501969 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501973 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501978 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501989 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501993 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.501996 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.502000 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.502003 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.502006 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.502009 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 09:06:52.502012 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n" + ] + } + ], + "source": [ + "ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "input_data = np.array([[[-0.5066, -0.0651, -0.1815, -0.8371, -0.5118, -0.0956, -0.2307, -0.4243]]]).astype(np.float32)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "torch_out = model.net(torch.from_numpy(input_data)).detach().numpy()\n", + "\n", + "input_name = ort_session.get_inputs()[0].name\n", + "output_name = ort_session.get_outputs()[0].name\n", + "outputs = ort_session.run([output_name], {input_name: input_data})\n", + "ort_out = outputs[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "close_out = np.isclose(torch_out, ort_out)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.00075907, -0.0053235 , -0.00055186], dtype=float32)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "torch_out[~close_out]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.00075901, -0.0053236 , -0.00055191], dtype=float32)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ort_out[~close_out]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "ts2vec_0", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.13" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/models/encoder.py b/models/encoder.py index 9f924f3c..dfcdb261 100644 --- a/models/encoder.py +++ b/models/encoder.py @@ -40,29 +40,33 @@ def __init__(self, input_dims, output_dims, hidden_dims=64, kernel_size=3, depth def forward(self, x, mask=None): # x: B x T x input_dims nan_mask = ~x.isnan().any(axis=-1) + # nan_mask = ~torch.any(torch.isnan(x), axis=-1) x[~nan_mask] = 0 x = self.input_fc(x) # B x T x Ch # generate & apply mask - if mask is None: - if self.training: - mask = self.mask_mode - else: - mask = 'all_true' + # if mask is None: + # if self.training: + # mask = self.mask_mode + # else: + # mask = 'all_true' - if mask == 'binomial': - mask = generate_binomial_mask(x.size(0), x.size(1)).to(x.device) - elif mask == 'continuous': - mask = generate_continuous_mask(x.size(0), x.size(1)).to(x.device) - elif mask == 'all_true': - mask = x.new_full((x.size(0), x.size(1)), True, dtype=torch.bool) - elif mask == 'all_false': - mask = x.new_full((x.size(0), x.size(1)), False, dtype=torch.bool) - elif mask == 'mask_last': - mask = x.new_full((x.size(0), x.size(1)), True, dtype=torch.bool) - mask[:, -1] = False + # if mask == 'binomial': + # mask = generate_binomial_mask(x.size(0), x.size(1)).to(x.device) + # elif mask == 'continuous': + # mask = generate_continuous_mask(x.size(0), x.size(1)).to(x.device) + # elif mask == 'all_true': + # mask = x.new_full((x.size(0), x.size(1)), True, dtype=torch.bool) + # elif mask == 'all_false': + # mask = x.new_full((x.size(0), x.size(1)), False, dtype=torch.bool) + # elif mask == 'mask_last': + # mask = x.new_full((x.size(0), x.size(1)), True, dtype=torch.bool) + # mask[:, -1] = False - mask &= nan_mask + if mask is None: + mask = nan_mask + else: + mask &= nan_mask x[~mask] = 0 # conv encoder diff --git a/onnx_optimization.ipynb b/onnx_optimization.ipynb new file mode 100644 index 00000000..ca736b06 --- /dev/null +++ b/onnx_optimization.ipynb @@ -0,0 +1,1718 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import onnx \n", + "from onnxoptimizer import optimize\n", + "import tracemalloc\n", + "import timeit\n", + "\n", + "import numpy as np \n", + "import pandas as pd \n", + "\n", + "import onnxruntime as ort \n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# ts2vec model\n", + "# model_run_id: 07406a4af7284df0b8d8f266509161e8\n", + "# epoch: 18, model_18" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "def run_ort(): \n", + " ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\")\n", + " input_data = np.array([[[-0.5066, -0.0651, -0.1815, -0.8371, -0.5118, -0.0956, -0.2307, -0.4243]]]).astype(np.float32)\n", + " input_name = ort_session.get_inputs()[0].name\n", + " output_name = ort_session.get_outputs()[0].name\n", + " outputs = ort_session.run([output_name], {input_name: input_data})\n", + " ort_out = outputs[0]\n", + " return None " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# 1. Before optimization " + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Current memory usage is 0.010585MB; Peak was 0.020855MB\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[0;93m2024-03-28 10:14:00.617315 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617331 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617335 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617339 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617343 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617347 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617350 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617354 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617364 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617367 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617371 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617374 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617377 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617380 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617383 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:00.617386 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n" + ] + } + ], + "source": [ + "# memory check \n", + "tracemalloc.start()\n", + "run_ort()\n", + "current, peak = tracemalloc.get_traced_memory()\n", + "print(f\"Current memory usage is {current / 10**6}MB; Peak was {peak / 10**6}MB\")\n", + "tracemalloc.stop()" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[0;93m2024-03-28 10:14:01.670791 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670803 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670808 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670812 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670815 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670818 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670822 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670825 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670835 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670838 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670842 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670845 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670848 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670851 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670854 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.670857 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838142 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838157 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838161 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838165 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838169 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838173 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838177 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838180 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838192 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838195 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838198 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838201 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838204 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838207 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838210 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.838213 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998201 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998211 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998216 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998220 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998224 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998227 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998231 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998235 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998247 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998250 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998253 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998256 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998259 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998263 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998266 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:01.998269 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160833 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160844 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160849 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160853 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160857 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160861 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160865 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160869 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160880 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160884 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160887 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160890 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160893 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160896 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160899 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.160902 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327234 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327249 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327253 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327258 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327261 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327265 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327268 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327271 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327284 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327288 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327291 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327295 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327298 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327301 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327305 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.327308 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510954 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510966 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510971 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510975 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510979 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510983 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510987 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.510990 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511001 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511005 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511008 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511011 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511015 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511018 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511021 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.511024 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677793 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677806 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677811 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677815 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677819 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677824 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677828 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677832 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677846 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677850 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677855 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677859 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677863 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677866 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677869 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.677872 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853186 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853199 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853204 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853208 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853212 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853216 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853219 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853223 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853233 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853237 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853240 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853243 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853246 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853249 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853252 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:02.853255 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019063 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019068 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019072 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019076 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019081 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019084 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019088 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019098 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019102 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019105 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019108 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019111 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019114 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019118 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.019122 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179875 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179886 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179890 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179895 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179898 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179903 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179907 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179911 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179923 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179927 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179930 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179933 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179936 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179939 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179942 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.179945 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340068 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340077 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340082 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340086 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340089 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340093 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340097 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340101 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340112 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340116 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340119 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340122 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340125 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340128 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340131 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.340134 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509743 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509758 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509762 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509766 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509769 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509772 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509776 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509779 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509796 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509800 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509804 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509807 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509810 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509813 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509816 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.509820 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678079 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678094 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678098 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678102 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678106 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678110 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678114 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678118 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678130 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678133 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678136 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678139 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678142 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678145 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678148 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.678151 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840555 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840565 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840569 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840573 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840577 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840580 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840584 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840588 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840600 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840603 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840606 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840609 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840612 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840615 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840618 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:03.840621 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007241 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007253 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007257 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007261 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007264 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007267 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007270 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007274 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007284 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007288 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007291 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007294 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007297 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007301 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007304 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.007307 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192069 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192079 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192083 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192087 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192090 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192093 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192096 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192099 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192109 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192113 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192116 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192119 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192122 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192125 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192128 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.192131 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355871 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355883 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355888 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355893 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355897 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355901 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355906 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355910 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355924 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355927 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355930 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355934 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355937 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355940 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355943 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.355947 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515357 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515367 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515372 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515376 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515380 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515384 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515388 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515392 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515406 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515410 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515414 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515417 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515420 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515424 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515427 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.515430 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687314 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687326 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687331 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687335 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687338 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687343 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687347 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687351 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687363 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687366 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687369 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687372 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687375 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687378 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687382 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.687385 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859321 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859333 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859337 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859341 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859345 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859349 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859353 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859357 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859367 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859370 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859373 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859377 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859380 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859383 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859387 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:04.859390 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021679 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021695 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021700 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021704 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021708 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021712 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021717 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021721 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021733 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021738 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021742 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021745 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021748 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021751 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021754 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.021758 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185366 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185378 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185383 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185387 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185391 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185395 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185399 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185403 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185414 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185417 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185420 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185423 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185427 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185430 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185433 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.185436 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348524 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348537 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348541 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348545 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348549 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348553 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348557 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348561 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348573 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348577 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348581 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348583 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348587 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348590 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348593 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.348596 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511183 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511193 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511198 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511207 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511211 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511215 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511218 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511222 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511233 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511236 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511240 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511243 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511246 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511249 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511252 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.511255 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672338 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672350 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672355 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672359 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672363 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672366 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672370 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672374 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672386 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672389 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672392 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672395 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672398 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672401 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672404 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.672407 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839450 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839465 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839469 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839473 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839477 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839481 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839485 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839488 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839500 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839504 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839508 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839511 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839514 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839517 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839520 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:05.839523 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008377 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008389 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008392 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008413 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008423 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008428 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008432 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008436 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008452 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008456 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008459 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008462 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008465 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008468 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008471 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.008474 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178020 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178038 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178043 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178047 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178055 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178059 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178063 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178080 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178084 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178087 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178090 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178093 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178096 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178099 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.178102 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345307 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345319 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345323 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345327 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345330 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345333 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345336 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345340 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345350 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345354 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345357 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345360 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345364 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345367 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345370 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.345374 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507490 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507502 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507507 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507511 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507514 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507518 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507522 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507525 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507540 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507544 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507547 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507550 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507553 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507556 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507558 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.507561 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670695 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670707 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670711 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670714 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670717 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670721 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670724 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670727 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670737 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670741 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670744 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670748 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670751 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670754 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670757 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.670761 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834210 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834224 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834228 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834232 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834236 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834240 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834244 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834247 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834257 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834260 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834263 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834266 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834269 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834272 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834275 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.834278 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996571 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996582 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996586 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996590 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996594 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996598 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996602 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996606 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996618 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996622 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996625 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996628 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996631 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996634 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996637 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:06.996640 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162063 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162067 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162072 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162075 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162079 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162083 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162087 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162099 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162103 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162106 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162109 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162112 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162115 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162118 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.162122 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325500 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325515 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325519 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325523 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325527 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325532 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325536 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325540 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325551 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325555 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325558 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325562 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325565 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325568 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325571 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.325576 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488626 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488637 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488641 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488646 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488650 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488653 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488657 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488661 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488674 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488677 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488681 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488684 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488687 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488690 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488693 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.488696 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653452 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653465 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653470 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653474 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653478 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653482 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653486 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653491 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653503 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653507 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653510 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653513 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653516 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653519 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653522 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.653525 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.813998 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814011 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814016 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814020 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814024 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814027 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814031 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814035 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814047 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814054 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814057 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814060 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814063 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814066 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.814069 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976742 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976752 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976757 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976761 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976764 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976768 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976772 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976776 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976788 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976791 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976794 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976797 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976800 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976803 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976806 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:07.976809 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139925 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139937 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139941 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139945 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139948 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139951 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139954 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139957 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139966 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139969 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139972 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139975 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139978 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139981 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139983 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.139986 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305470 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305483 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305488 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305492 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305496 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305500 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305504 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305508 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305524 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305527 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305531 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305534 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305537 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305540 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305543 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.305546 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466313 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466324 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466328 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466332 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466336 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466340 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466343 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466347 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466363 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466366 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466369 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466372 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466375 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466378 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466381 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.466384 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633293 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633305 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633310 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633314 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633317 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633321 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633325 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633329 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633341 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633345 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633349 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633352 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633355 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633358 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633361 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.633364 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805143 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805158 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805161 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805188 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805200 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805204 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805208 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805212 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805233 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805238 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805241 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805245 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805248 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805251 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805255 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.805258 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974601 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974613 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974618 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974622 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974626 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974630 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974633 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974637 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974649 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974653 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974656 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974659 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974662 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974665 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974668 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:08.974671 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136817 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136828 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136833 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136837 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136841 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136845 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136849 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136853 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136867 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136870 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136874 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136877 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136880 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136883 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136886 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.136889 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306781 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306794 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306798 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306802 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306806 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306810 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306814 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306818 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306833 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306836 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306839 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306842 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306845 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306848 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306851 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.306854 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470181 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470192 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470197 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470201 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470205 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470209 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470212 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470216 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470226 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470230 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470233 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470237 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470240 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470243 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470247 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.470250 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632413 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632424 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632428 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632432 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632436 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632441 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632445 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632449 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632460 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632463 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632467 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632470 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632474 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632478 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632482 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.632485 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797936 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797949 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797953 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797956 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797959 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797963 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797966 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797969 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797979 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797982 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797986 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797989 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797992 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797995 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.797998 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.798001 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966928 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966943 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966948 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966952 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966961 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966965 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966968 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966971 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966982 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966986 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966989 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966995 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.966998 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.967002 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.967006 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:09.967014 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135515 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135526 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135531 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135534 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135539 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135542 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135546 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135549 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135558 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135561 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135565 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135568 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135571 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135574 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135577 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.135580 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297824 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297836 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297841 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297845 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297850 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297854 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297858 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297863 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297875 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297879 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297882 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297885 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297889 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297892 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297895 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.297899 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465310 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465323 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465328 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465332 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465336 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465341 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465345 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465349 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465361 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465364 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465368 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465371 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465374 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465377 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465381 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.465384 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643237 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643250 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643255 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643259 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643263 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643267 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643271 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643275 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643288 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643291 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643294 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643297 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643300 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643303 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643306 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.643309 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821224 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821238 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821242 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821245 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821249 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821253 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821256 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821260 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821278 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821282 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821286 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821289 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821293 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821296 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821300 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.821303 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994171 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994182 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994186 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994190 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994194 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994198 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994201 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994205 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994217 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994220 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994223 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994226 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994229 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994232 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994235 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:10.994238 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156678 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156692 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156697 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156701 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156705 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156709 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156713 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156717 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156730 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156734 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156737 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156740 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156743 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156746 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156749 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.156752 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318009 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318023 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318027 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318032 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318035 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318039 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318043 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318046 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318061 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318064 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318067 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318071 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318074 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318077 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318081 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.318085 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481306 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481319 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481323 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481328 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481331 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481335 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481338 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481341 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481357 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481361 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481364 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481367 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481371 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481374 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481377 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.481380 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642780 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642792 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642797 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642801 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642805 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642809 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642813 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642817 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642828 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642831 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642835 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642838 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642840 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642843 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642846 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.642849 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810313 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810329 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810332 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810336 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810339 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810342 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810345 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810349 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810359 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810362 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810366 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810369 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810372 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810376 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810379 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.810382 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979213 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979225 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979228 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979232 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979235 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979239 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979242 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979245 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979255 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979258 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979261 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979265 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979268 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979271 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979273 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:11.979276 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143465 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143478 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143483 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143487 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143491 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143495 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143499 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143503 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143514 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143517 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143520 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143523 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143526 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143529 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143532 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.143535 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305451 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305461 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305466 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305470 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305474 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305477 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305481 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305485 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305497 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305500 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305503 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305506 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305509 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305512 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305515 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.305518 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472724 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472737 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472741 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472744 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472748 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472751 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472754 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472757 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472767 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472770 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472773 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472777 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472780 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472783 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472786 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.472789 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640765 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640777 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640782 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640786 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640789 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640793 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640797 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640801 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640814 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640818 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640821 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640824 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640827 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640830 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640833 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.640836 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805467 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805477 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805482 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805486 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805489 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805493 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805497 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805500 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805510 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805513 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805516 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805519 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805522 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805529 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805532 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.805535 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965506 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965516 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965521 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965525 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965529 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965533 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965538 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965541 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965553 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965557 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965560 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965563 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965566 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965570 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965573 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:12.965576 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128644 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128655 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128659 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128663 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128667 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128671 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128675 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128679 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128691 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128694 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128697 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128700 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128703 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128706 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128708 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.128711 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290589 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290600 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290605 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290609 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290612 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290616 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290620 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290624 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290636 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290639 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290642 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290645 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290648 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290651 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290654 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.290657 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455040 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455056 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455061 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455065 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455069 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455074 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455078 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455090 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455093 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455097 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455100 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455103 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455106 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455109 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.455112 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615848 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615859 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615863 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615867 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615871 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615875 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615879 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615883 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615894 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615897 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615901 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615904 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615907 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615910 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615913 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.615916 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779903 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779916 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779920 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779925 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779929 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779933 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779938 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779942 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779953 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779957 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779960 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779963 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779966 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779970 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779973 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.779976 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941005 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941015 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941020 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941024 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941028 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941032 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941036 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941040 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941051 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941055 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941058 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941061 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941064 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941067 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941069 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:13.941072 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105714 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105725 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105730 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105734 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105738 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105742 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105745 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105750 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105761 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105764 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105768 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105771 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105774 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105777 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105780 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.105783 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266956 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266965 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266970 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266974 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266978 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266982 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266986 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.266990 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267001 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267006 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267010 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267015 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267018 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267022 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267025 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.267028 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428006 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428020 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428025 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428029 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428032 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428036 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428040 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428044 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428056 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428061 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428064 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428067 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428070 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428073 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428076 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.428079 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589098 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589108 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589113 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589117 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589121 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589125 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589130 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializers" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "165 ms ± 2.05 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "AndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589134 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589146 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589149 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589153 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589156 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589159 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589162 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589165 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.589168 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748922 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748932 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748937 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748941 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748945 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748948 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748952 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748956 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748968 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748972 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748975 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748981 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748984 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748987 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748990 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.748993 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913372 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913383 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913388 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913392 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913395 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913399 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913403 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913406 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913416 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913419 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913422 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913425 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913428 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913431 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913434 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:14:14.913437 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n" + ] + } + ], + "source": [ + "# inference time check \n", + "%timeit run_ort()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# After optimization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## (1). Alexnet example" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/fguo/.pyenv/versions/3.10.13/envs/ts2vec_0/lib/python3.10/site-packages/torchvision/models/_utils.py:208: UserWarning: The parameter 'pretrained' is deprecated since 0.13 and may be removed in the future, please use 'weights' instead.\n", + " warnings.warn(\n", + "/Users/fguo/.pyenv/versions/3.10.13/envs/ts2vec_0/lib/python3.10/site-packages/torchvision/models/_utils.py:223: UserWarning: Arguments other than a weight enum or `None` for 'weights' are deprecated since 0.13 and may be removed in the future. The current behavior is equivalent to passing `weights=AlexNet_Weights.IMAGENET1K_V1`. You can also use `weights=AlexNet_Weights.DEFAULT` to get the most up-to-date weights.\n", + " warnings.warn(msg)\n" + ] + } + ], + "source": [ + "import torch\n", + "import torchvision\n", + "\n", + "dummy_input = torch.randn(10, 3, 224, 224, device=\"cpu\")\n", + "model = torchvision.models.alexnet(pretrained=True).cpu()\n", + "input_names = [ \"actual_input_1\" ] + [ \"learned_%d\" % i for i in range(16) ]\n", + "output_names = [ \"output1\" ]\n", + "\n", + "torch.onnx.export(model, dummy_input, \"/Users/fguo/cmt/ts2vec/model_checkpoints/alexnet.onnx\", verbose=False, \n", + " input_names=input_names, output_names=output_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [], + "source": [ + "model = onnx.load(\"/Users/fguo/cmt/ts2vec/model_checkpoints/alexnet.onnx\")\n", + "# List of optimization passes you want to apply\n", + "# Full list: https://github.com/onnx/optimizer/blob/b3a4611861734e0731bbcc2bed1f080139e4988b/onnxoptimizer/pass_registry.h#L39\n", + "passes = [\"eliminate_unused_initializer\", \"fuse_bn_into_conv\"]\n", + "# Apply optimizations\n", + "optimized_model = optimize(model, passes)\n", + "# Save the optimized model\n", + "onnx.save(optimized_model, \"/Users/fguo/cmt/ts2vec/model_checkpoints/alexnet_optimized.onnx\")\n", + "\n", + "ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/alexnet_optimized.onnx\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## (2). ts2vec model" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [], + "source": [ + "# # This does not work. \n", + "# model = onnx.load(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\")\n", + "# # List of optimization passes you want to apply\n", + "# # Full list: https://github.com/onnx/optimizer/blob/b3a4611861734e0731bbcc2bed1f080139e4988b/onnxoptimizer/pass_registry.h#L39\n", + "# passes = [\"eliminate_nop_dropout\"]\n", + "# # Apply optimizations\n", + "# optimized_model = optimize(model, passes)\n", + "# # Save the optimized model\n", + "# onnx.save(optimized_model, \"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18_optimized.onnx\")\n", + "\n", + "# ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18_optimized.onnx\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### ORT_ENABLE_ALL" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "def run_ort_new(): \n", + " # Set session options for optimization\n", + " sess_options = ort.SessionOptions()\n", + " sess_options.graph_optimization_level = ort.GraphOptimizationLevel.ORT_DISABLE_ALL\n", + " # Create a session with the optimized model\n", + " ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\", sess_options)\n", + " input_data = np.array([[[-0.5066, -0.0651, -0.1815, -0.8371, -0.5118, -0.0956, -0.2307, -0.4243]]]).astype(np.float32)\n", + " input_name = ort_session.get_inputs()[0].name\n", + " output_name = ort_session.get_outputs()[0].name\n", + " outputs = ort_session.run([output_name], {input_name: input_data})\n", + " ort_out = outputs[0]\n", + " return None " + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Current memory usage is 0.002912MB; Peak was 0.013182MB\n" + ] + } + ], + "source": [ + "# memory check \n", + "tracemalloc.start()\n", + "run_ort_new()\n", + "current, peak = tracemalloc.get_traced_memory()\n", + "print(f\"Current memory usage is {current / 10**6}MB; Peak was {peak / 10**6}MB\")\n", + "tracemalloc.stop()" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "70.1 ms ± 1.05 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)\n" + ] + } + ], + "source": [ + "# inference time check \n", + "%timeit run_ort_new()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## QA " + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[0;93m2024-03-28 10:22:26.644409 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644827 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644832 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644835 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644839 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644842 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644845 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644849 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644862 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_if_then_branch__inlfunc_aten_index_put_bool_token_3_tmp_7'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644866 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_3'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644869 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_cond_6'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644872 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_2'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644875 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_4'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644879 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_tmp_5'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644883 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate_as_bool'. It is not used by any node and should be removed from the model.\u001b[m\n", + "\u001b[0;93m2024-03-28 10:22:26.644886 [W:onnxruntime:, graph.cc:3593 CleanUnusedInitializersAndNodeArgs] Removing initializer '_inlfunc_aten_index_put_bool_token_3_accumulate'. It is not used by any node and should be removed from the model.\u001b[m\n" + ] + } + ], + "source": [ + "ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\")\n", + "input_data = np.array([[[-0.5066, -0.0651, -0.1815, -0.8371, -0.5118, -0.0956, -0.2307, -0.4243]]]).astype(np.float32)\n", + "input_name = ort_session.get_inputs()[0].name\n", + "output_name = ort_session.get_outputs()[0].name\n", + "outputs = ort_session.run([output_name], {input_name: input_data})\n", + "ort_base = outputs[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [], + "source": [ + "sess_options = ort.SessionOptions()\n", + "sess_options.graph_optimization_level = ort.GraphOptimizationLevel.ORT_DISABLE_ALL\n", + "# Create a session with the optimized model\n", + "ort_session = ort.InferenceSession(\"/Users/fguo/cmt/ts2vec/model_checkpoints/model_18.onnx\", sess_options)\n", + "input_data = np.array([[[-0.5066, -0.0651, -0.1815, -0.8371, -0.5118, -0.0956, -0.2307, -0.4243]]]).astype(np.float32)\n", + "input_name = ort_session.get_inputs()[0].name\n", + "output_name = ort_session.get_outputs()[0].name\n", + "outputs = ort_session.run([output_name], {input_name: input_data})\n", + "ort_new = outputs[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [], + "source": [ + "close_out = np.isclose(ort_base, ort_new)" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.00055191], dtype=float32)" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ort_base[~close_out]" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([-0.00055193], dtype=float32)" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ort_new[~close_out]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "ts2vec_0", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.13" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/onnx_test.py b/onnx_test.py new file mode 100644 index 00000000..97d173ab --- /dev/null +++ b/onnx_test.py @@ -0,0 +1,81 @@ +import os +import pickle +from datetime import datetime + +import numpy as np +import pandas as pd +# import matplotlib.pyplot as plt + +from ts2vec import TS2Vec +import torch +from torch import nn + + +# Model traing parameters +OUTPUT_DIMS = 320 +TEMPORAL_UNIT = 2 +BATCH_SIZE = 128 +N_EPOCHS = 2 +HIDDEN_DIMS = 64 +KERNEL_SIZE = 3 +SAVE_CHECK_POINT = False + + +# load train data +train_data_dir = "/Users/fguo/cmt/ts2vec/sample_data/train_data_sample10.npy" +train_motion_names_dir = "/Users/fguo/cmt/ts2vec/sample_data/train_motion_names_sample10.parquet" +train_data = np.load(train_data_dir) +train_motion_names = pd.read_parquet(train_motion_names_dir) +print(train_data.shape, train_motion_names.shape) + +# load val data +val_data_dir = "/Users/fguo/cmt/ts2vec/sample_data/val_data_sample4.npy" +val_motion_names_dir = "/Users/fguo/cmt/ts2vec/sample_data/val_motion_names_sample4.parquet" +val_data = np.load(val_data_dir) +val_motion_names = pd.read_parquet(val_motion_names_dir) +print(val_data.shape, val_motion_names.shape) + + +model = TS2Vec( + input_dims=train_data.shape[-1], + device='cpu', + output_dims=OUTPUT_DIMS, + hidden_dims=HIDDEN_DIMS, + temporal_unit=TEMPORAL_UNIT, + batch_size=BATCH_SIZE, + after_epoch_callback=None +) +# loss_log = model.fit( +# train_data, +# val_data, +# verbose=True, +# n_epochs=N_EPOCHS, +# ) +# model.save("/Users/fguo/cmt/ts2vec/model_checkpoints/sample_model.pkl") + +model.load("/Users/fguo/cmt/ts2vec/model_checkpoints/sample_model.pkl") +random_input = torch.randn(1, 1, 8, device="cpu") +# out = model.encode(random_input) + + +# class MLPModel(nn.Module): +# def __init__(self): +# super().__init__() +# self.fc0 = nn.Linear(8, 8, bias=True) +# self.fc1 = nn.Linear(8, 4, bias=True) +# self.fc2 = nn.Linear(4, 2, bias=True) +# self.fc3 = nn.Linear(2, 2, bias=True) + +# def forward(self, tensor_x: torch.Tensor): +# tensor_x = self.fc0(tensor_x) +# tensor_x = torch.sigmoid(tensor_x) +# tensor_x = self.fc1(tensor_x) +# tensor_x = torch.sigmoid(tensor_x) +# tensor_x = self.fc2(tensor_x) +# tensor_x = torch.sigmoid(tensor_x) +# output = self.fc3(tensor_x) +# return output + +# model = MLPModel() +# tensor_x = torch.rand((97, 8), dtype=torch.float32) +# onnx_program = torch.onnx.dynamo_export(model, tensor_x) diff --git a/requirements.txt b/requirements.txt index 9cc27049..09471cb6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,13 @@ -Bottleneck==1.3.2 -torch==1.8.1 -scipy==1.6.1 -numpy==1.19.2 -statsmodels==0.12.2 -pandas==1.0.1 -scikit_learn==0.24.2 +Bottleneck +torch>=2.0 +scipy>=1.6.1 +numpy>=1.19.2 +statsmodels>=0.12.2 +pandas>=1.0.1 +scikit_learn>=0.24.2 +onnxruntime>=1.12.0 +ipykernel +pyarrow +fastparquet +onnxscript +onnxoptimizer \ No newline at end of file diff --git a/sample_data/train_data_sample10.npy b/sample_data/train_data_sample10.npy new file mode 100644 index 00000000..12f90154 Binary files /dev/null and b/sample_data/train_data_sample10.npy differ diff --git a/sample_data/train_motion_names_sample10.parquet b/sample_data/train_motion_names_sample10.parquet new file mode 100644 index 00000000..3ae2859c Binary files /dev/null and b/sample_data/train_motion_names_sample10.parquet differ diff --git a/sample_data/val_data_sample4.npy b/sample_data/val_data_sample4.npy new file mode 100644 index 00000000..c9e78a7a Binary files /dev/null and b/sample_data/val_data_sample4.npy differ diff --git a/sample_data/val_motion_names_sample4.parquet b/sample_data/val_motion_names_sample4.parquet new file mode 100644 index 00000000..0415b3a4 Binary files /dev/null and b/sample_data/val_motion_names_sample4.parquet differ diff --git a/ts2vec.py b/ts2vec.py index f5418ba6..29cbf332 100644 --- a/ts2vec.py +++ b/ts2vec.py @@ -6,6 +6,7 @@ from models.losses import hierarchical_contrastive_loss from utils import take_per_row, split_with_nan, centerize_vary_length_series, torch_pad_nan import math +from models.encoder import generate_binomial_mask class TS2Vec: '''The TS2Vec model''' @@ -124,10 +125,14 @@ def fit(self, train_data, val_data, n_epochs=None, n_iters=None, verbose=False): optimizer.zero_grad() - out1 = self._net(take_per_row(x, crop_offset + crop_eleft, crop_right - crop_eleft)) + in1 = take_per_row(x, crop_offset + crop_eleft, crop_right - crop_eleft) + mask = generate_binomial_mask(in1.size(0), in1.size(1)).to(self.device) + out1 = self._net(in1, mask) out1 = out1[:, -crop_l:] - out2 = self._net(take_per_row(x, crop_offset + crop_left, crop_eright - crop_left)) + in2 = take_per_row(x, crop_offset + crop_left, crop_eright - crop_left) + mask = generate_binomial_mask(in2.size(0), in2.size(1)).to(self.device) + out2 = self._net(in2, mask) out2 = out2[:, :crop_l] loss = hierarchical_contrastive_loss( @@ -204,11 +209,15 @@ def evaluate(self, val_data): crop_eleft = np.random.randint(crop_left + 1) crop_eright = np.random.randint(low=crop_right, high=ts_l + 1) crop_offset = np.random.randint(low=-crop_eleft, high=ts_l - crop_eright + 1, size=x.size(0)) - - out1 = self._net(take_per_row(x, crop_offset + crop_eleft, crop_right - crop_eleft)) + + in1 = take_per_row(x, crop_offset + crop_eleft, crop_right - crop_eleft) + mask = generate_binomial_mask(in1.size(0), in1.size(1)).to(self.device) + out1 = self._net(in1, mask) out1 = out1[:, -crop_l:] - - out2 = self._net(take_per_row(x, crop_offset + crop_left, crop_eright - crop_left)) + + in2 = take_per_row(x, crop_offset + crop_left, crop_eright - crop_left) + mask = generate_binomial_mask(in2.size(0), in2.size(1)).to(self.device) + out2 = self._net(in2, mask) out2 = out2[:, :crop_l] loss_val = hierarchical_contrastive_loss(